summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/runner/BUILD
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-08-06 12:08:12 -0700
committergVisor bot <gvisor-bot@google.com>2020-08-06 12:10:49 -0700
commit90021e775a6e8059ea4f4262a16c4f962d3b9732 (patch)
tree836255772e78b9b2a623eecd336f19b2a5297319 /test/packetimpact/runner/BUILD
parentb918d97850075cc353abf7b590b4e807e2984ab0 (diff)
Add bzl_library rules for .bzl files without one.
PiperOrigin-RevId: 325280924
Diffstat (limited to 'test/packetimpact/runner/BUILD')
-rw-r--r--test/packetimpact/runner/BUILD8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/packetimpact/runner/BUILD b/test/packetimpact/runner/BUILD
index bad4f0183..ff2be9b30 100644
--- a/test/packetimpact/runner/BUILD
+++ b/test/packetimpact/runner/BUILD
@@ -1,4 +1,4 @@
-load("//tools:defs.bzl", "go_test")
+load("//tools:defs.bzl", "bzl_library", "go_test")
package(
default_visibility = ["//test/packetimpact:__subpackages__"],
@@ -19,3 +19,9 @@ go_test(
"@com_github_docker_docker//api/types/mount:go_default_library",
],
)
+
+bzl_library(
+ name = "defs_bzl",
+ srcs = ["defs.bzl"],
+ visibility = ["//visibility:private"],
+)