summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/hash/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip/network/hash/BUILD')
-rw-r--r--pkg/tcpip/network/hash/BUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/tcpip/network/hash/BUILD b/pkg/tcpip/network/hash/BUILD
new file mode 100644
index 000000000..96805c690
--- /dev/null
+++ b/pkg/tcpip/network/hash/BUILD
@@ -0,0 +1,11 @@
+package(licenses = ["notice"]) # BSD
+
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+ name = "hash",
+ srcs = ["hash.go"],
+ importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/network/hash",
+ visibility = ["//visibility:public"],
+ deps = ["//pkg/tcpip/header"],
+)