gvisor/pkg/test/testutil/BUILD

21 lines
471 B
Python

load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "testutil",
testonly = 1,
srcs = [
"testutil.go",
"testutil_runfiles.go",
],
visibility = ["//:sandbox"],
deps = [
"//pkg/sync",
"//runsc/boot",
"//runsc/specutils",
"@com_github_cenkalti_backoff//:go_default_library",
"@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
],
)