gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/pkg/test/testutil/BUILD (about) 1 load("//tools:defs.bzl", "go_library") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 licenses = ["notice"], 6 ) 7 8 go_library( 9 name = "testutil", 10 testonly = 1, 11 srcs = [ 12 "sh.go", 13 "testutil.go", 14 "testutil_runfiles.go", 15 "tree.go", 16 ], 17 visibility = ["//:sandbox"], 18 deps = [ 19 "//pkg/sentry/watchdog", 20 "//pkg/sync", 21 "//runsc/config", 22 "//runsc/flag", 23 "//runsc/specutils", 24 "@com_github_cenkalti_backoff//:go_default_library", 25 "@com_github_kr_pty//:go_default_library", 26 "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", 27 "@org_golang_x_sys//unix:go_default_library", 28 ], 29 )