gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/runtimes/runner/lib/BUILD (about)

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