github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/runner/BUILD (about) 1 load("//tools:defs.bzl", "bzl_library", "go_binary") 2 3 package(licenses = ["notice"]) 4 5 go_binary( 6 name = "runner", 7 testonly = 1, 8 srcs = ["main.go"], 9 data = [ 10 "//runsc", 11 "//test/runner/setup_container", 12 ], 13 visibility = ["//:sandbox"], 14 deps = [ 15 "//pkg/log", 16 "//pkg/test/testutil", 17 "//runsc/specutils", 18 "//test/runner/gtest", 19 "//test/uds", 20 "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", 21 "@com_github_syndtr_gocapability//capability:go_default_library", 22 "@org_golang_x_sys//unix:go_default_library", 23 ], 24 ) 25 26 bzl_library( 27 name = "defs_bzl", 28 srcs = ["defs.bzl"], 29 visibility = ["//visibility:private"], 30 )