diff options
Diffstat (limited to 'test/root/testdata/BUILD')
-rw-r--r-- | test/root/testdata/BUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/root/testdata/BUILD b/test/root/testdata/BUILD new file mode 100644 index 000000000..125633680 --- /dev/null +++ b/test/root/testdata/BUILD @@ -0,0 +1,19 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +package(licenses = ["notice"]) + +go_library( + name = "testdata", + srcs = [ + "busybox.go", + "containerd_config.go", + "httpd.go", + "httpd_mount_paths.go", + "sandbox.go", + "simple.go", + ], + importpath = "gvisor.dev/gvisor/test/root/testdata", + visibility = [ + "//visibility:public", + ], +) |