gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/runtimes/proctor/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 = "proctor",
    10      srcs = ["main.go"],
    11      pure = True,
    12      visibility = ["//test/runtimes:__pkg__"],
    13      deps = [
    14          "//test/runtimes/proctor/lib",
    15          "@org_golang_x_sys//unix:go_default_library",
    16      ],
    17  )