summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/harness/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/benchmarks/harness/BUILD')
-rw-r--r--test/benchmarks/harness/BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/benchmarks/harness/BUILD b/test/benchmarks/harness/BUILD
new file mode 100644
index 000000000..c2e316709
--- /dev/null
+++ b/test/benchmarks/harness/BUILD
@@ -0,0 +1,18 @@
+load("//tools:defs.bzl", "go_library")
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "harness",
+ testonly = 1,
+ srcs = [
+ "harness.go",
+ "machine.go",
+ "util.go",
+ ],
+ visibility = ["//:sandbox"],
+ deps = [
+ "//pkg/test/dockerutil",
+ "//pkg/test/testutil",
+ ],
+)