diff options
author | Adin Scannell <ascannell@google.com> | 2020-02-10 15:43:36 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-10 15:45:17 -0800 |
commit | dc5a8e52d7004e3796feaadb0a0b0960f7289884 (patch) | |
tree | 1ea8e0d54e45ffc0e948c9d2df4576dc0385e15f /tools/bazeldefs/BUILD | |
parent | 475316e87dac806d69bcb06ea4065f3c138bb47e (diff) |
Rename build to builddefs and minor build clean-up.
The name 'bazel' also doesn't work because bazel will treat it specially.
Fixes #1807
PiperOrigin-RevId: 294321221
Diffstat (limited to 'tools/bazeldefs/BUILD')
-rw-r--r-- | tools/bazeldefs/BUILD | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/bazeldefs/BUILD b/tools/bazeldefs/BUILD new file mode 100644 index 000000000..00a467473 --- /dev/null +++ b/tools/bazeldefs/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 = ["//:sandbox"], +) |