summaryrefslogtreecommitdiffhomepage
path: root/tools/build/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/BUILD')
-rw-r--r--tools/build/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/build/BUILD b/tools/build/BUILD
new file mode 100644
index 000000000..0c0ce3f4d
--- /dev/null
+++ b/tools/build/BUILD
@@ -0,0 +1,10 @@
+package(licenses = ["notice"])
+
+# In bazel, no special support is required for loopback networking. This is
+# just a dummy data target that does not change the test environment.
+genrule(
+ name = "loopback",
+ outs = ["loopback.txt"],
+ cmd = "touch $@",
+ visibility = ["//visibility:public"],
+)