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

     1  load("//tools:defs.bzl", "go_binary")
     2  
     3  package(
     4      default_applicable_licenses = ["//:license"],
     5      licenses = ["notice"],
     6  )
     7  
     8  go_binary(
     9      name = "runner",
    10      testonly = 1,
    11      srcs = ["main.go"],
    12      visibility = ["//test/runtimes:__pkg__"],
    13      deps = [
    14          "//pkg/test/testutil",
    15          "//test/runtimes/runner/lib",
    16      ],
    17  )