summaryrefslogtreecommitdiffhomepage
path: root/runsc/test/root/testdata/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/test/root/testdata/BUILD')
-rw-r--r--runsc/test/root/testdata/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/runsc/test/root/testdata/BUILD b/runsc/test/root/testdata/BUILD
new file mode 100644
index 000000000..a22635129
--- /dev/null
+++ b/runsc/test/root/testdata/BUILD
@@ -0,0 +1,17 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+package(licenses = ["notice"]) # Apache 2.0
+
+go_library(
+ name = "testdata",
+ srcs = [
+ "containerd_config.go",
+ "httpd.go",
+ "httpd_mount_paths.go",
+ "sandbox.go",
+ ],
+ importpath = "gvisor.googlesource.com/gvisor/runsc/test/root/testdata",
+ visibility = [
+ "//visibility:public",
+ ],
+)