diff options
Diffstat (limited to 'pkg/tcpip/checker/BUILD')
-rw-r--r-- | pkg/tcpip/checker/BUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/tcpip/checker/BUILD b/pkg/tcpip/checker/BUILD new file mode 100644 index 000000000..ac5203031 --- /dev/null +++ b/pkg/tcpip/checker/BUILD @@ -0,0 +1,16 @@ +package(licenses = ["notice"]) # BSD + +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +go_library( + name = "checker", + testonly = 1, + srcs = ["checker.go"], + importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/checker", + visibility = ["//visibility:public"], + deps = [ + "//pkg/tcpip", + "//pkg/tcpip/header", + "//pkg/tcpip/seqnum", + ], +) |