github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/cmd/test_app/BUILD (about)

     1  load("//tools:defs.bzl", "go_binary")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_binary(
     6      name = "test_app",
     7      testonly = 1,
     8      srcs = [
     9          "fds.go",
    10          "main.go",
    11      ],
    12      pure = True,
    13      visibility = ["//runsc/container:__pkg__"],
    14      deps = [
    15          "//pkg/test/testutil",
    16          "//pkg/unet",
    17          "//runsc/flag",
    18          "@com_github_google_subcommands//:go_default_library",
    19          "@com_github_kr_pty//:go_default_library",
    20      ],
    21  )