summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/netdevs/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/packetimpact/netdevs/BUILD')
-rw-r--r--test/packetimpact/netdevs/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/packetimpact/netdevs/BUILD b/test/packetimpact/netdevs/BUILD
new file mode 100644
index 000000000..422bb9b0c
--- /dev/null
+++ b/test/packetimpact/netdevs/BUILD
@@ -0,0 +1,15 @@
+load("//tools:defs.bzl", "go_library")
+
+package(
+ licenses = ["notice"],
+)
+
+go_library(
+ name = "netdevs",
+ srcs = ["netdevs.go"],
+ visibility = ["//test/packetimpact:__subpackages__"],
+ deps = [
+ "//pkg/tcpip",
+ "//pkg/tcpip/header",
+ ],
+)