summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/iptables/BUILD
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-07-02 13:48:02 -0700
committergVisor bot <gvisor-bot@google.com>2019-07-02 13:48:06 -0700
commitd60ae0ddee1799c8e45d0f7394f128ea67eb0ab8 (patch)
treed9610315c089675ad4343075daa514ddb38025bc /pkg/tcpip/iptables/BUILD
parent4f2f44320f9b96bdc8c0fb25c116104ea501ab8b (diff)
parent0bbbcafd68154e7c7b46692b84a39fb6bb5f1568 (diff)
Merge pull request #279 from kevinGC:iptables-1-pkg
PiperOrigin-RevId: 256231055
Diffstat (limited to 'pkg/tcpip/iptables/BUILD')
-rw-r--r--pkg/tcpip/iptables/BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/tcpip/iptables/BUILD b/pkg/tcpip/iptables/BUILD
new file mode 100644
index 000000000..fc9abbb55
--- /dev/null
+++ b/pkg/tcpip/iptables/BUILD
@@ -0,0 +1,18 @@
+package(licenses = ["notice"])
+
+load("//tools/go_stateify:defs.bzl", "go_library")
+
+go_library(
+ name = "iptables",
+ srcs = [
+ "iptables.go",
+ "targets.go",
+ "types.go",
+ ],
+ importpath = "gvisor.dev/gvisor/pkg/tcpip/iptables",
+ visibility = ["//visibility:public"],
+ deps = [
+ "//pkg/tcpip",
+ "//pkg/tcpip/buffer",
+ ],
+)