gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/cmd/test_app/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 = "test_app", 10 testonly = 1, 11 srcs = [ 12 "fds.go", 13 "main.go", 14 "zombies.go", 15 ], 16 static = True, 17 visibility = [ 18 "//runsc/container:__pkg__", 19 "//test/syscalls/linux:__pkg__", 20 ], 21 deps = [ 22 "//pkg/test/testutil", 23 "//pkg/unet", 24 "//runsc/flag", 25 "@com_github_google_subcommands//:go_default_library", 26 "@com_github_kr_pty//:go_default_library", 27 "@org_golang_x_sys//unix:go_default_library", 28 ], 29 )