gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/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( 7 default_applicable_licenses = ["//:license"], 8 licenses = ["notice"], 9 ) 10 11 cc_binary( 12 name = "setup_container", 13 testonly = 1, 14 srcs = ["setup_container.cc"], 15 visibility = ["//test/runner:__subpackages__"], 16 deps = [ 17 "//test/syscalls/linux:socket_netlink_util", 18 "//test/util:capability_util", 19 "//test/util:posix_error", 20 "//test/util:socket_util", 21 ], 22 )