github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/runtimes/runner/lib/BUILD (about)

     1  load("//tools:defs.bzl", "go_library", "go_test")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_library(
     6      name = "lib",
     7      testonly = 1,
     8      srcs = ["lib.go"],
     9      visibility = ["//test/runtimes/runner:__pkg__"],
    10      deps = [
    11          "//pkg/log",
    12          "//pkg/test/dockerutil",
    13          "//pkg/test/testutil",
    14      ],
    15  )
    16  
    17  go_test(
    18      name = "lib_test",
    19      size = "small",
    20      srcs = ["exclude_test.go"],
    21      library = ":lib",
    22  )