Files

31 lines
750 B
Python
Raw Permalink Normal View History

2020-01-27 10:04:07 -08:00
load("//tools:defs.bzl", "go_library")
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
2018-10-23 00:19:11 -07:00
go_library(
name = "testutil",
2019-09-03 22:01:34 -07:00
testonly = 1,
2020-02-05 22:45:44 -08:00
srcs = [
2021-01-08 14:49:23 -08:00
"sh.go",
2020-02-05 22:45:44 -08:00
"testutil.go",
"testutil_runfiles.go",
"tree.go",
2020-02-05 22:45:44 -08:00
],
2018-12-17 17:34:09 -08:00
visibility = ["//:sandbox"],
deps = [
"//pkg/rand",
2021-05-27 19:51:54 -07:00
"//pkg/sentry/watchdog",
2020-01-09 22:00:42 -08:00
"//pkg/sync",
2020-08-19 18:35:35 -07:00
"//runsc/config",
2022-02-11 11:21:33 -08:00
"//runsc/flag",
"//runsc/specutils",
2018-07-25 17:36:52 -07:00
"@com_github_cenkalti_backoff//:go_default_library",
2021-01-08 14:49:23 -08:00
"@com_github_kr_pty//:go_default_library",
"@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
"@org_golang_x_sys//unix:go_default_library",
],
)