blob: 0c0ce3f4d9c39389ce65514aa131c0eb04010433 (
plain)
1
2
3
4
5
6
7
8
9
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"],
)
|