diff options
Diffstat (limited to 'test/runtimes/common/BUILD')
-rw-r--r-- | test/runtimes/common/BUILD | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/runtimes/common/BUILD b/test/runtimes/common/BUILD new file mode 100644 index 000000000..7147e841a --- /dev/null +++ b/test/runtimes/common/BUILD @@ -0,0 +1,10 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +package(licenses = ["notice"]) + +go_library( + name = "common", + srcs = ["common.go"], + importpath = "gvisor.dev/gvisor/test/runtimes/common", + visibility = ["//:sandbox"], +) |