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

     1  # setup_container contains a shim binary that runs within the test container
     2  # for syscall tests with container=True.
     3  
     4  load("//tools:defs.bzl", "cc_binary")
     5  
     6  package(licenses = ["notice"])
     7  
     8  cc_binary(
     9      name = "setup_container",
    10      testonly = 1,
    11      srcs = ["setup_container.cc"],
    12      visibility = ["//test/runner:__subpackages__"],
    13      deps = [
    14          "//test/syscalls/linux:socket_netlink_util",
    15          "//test/syscalls/linux:socket_test_util",
    16          "//test/util:capability_util",
    17          "//test/util:posix_error",
    18      ],
    19  )