diff options
author | Googler <noreply@google.com> | 2019-02-07 13:44:57 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-02-07 13:46:26 -0800 |
commit | e0afa8789963c18c1afed7d222754ef4b7415a7d (patch) | |
tree | 7022cf540cf9d557aa53780235cdb22497e28340 /pkg/tcpip/link/muxed/BUILD | |
parent | 9ef3427ac14a84002497f3c8bac346486cb36f2b (diff) |
Internal change.
PiperOrigin-RevId: 232937200
Change-Id: I5c3709cc8f1313313ff618a45e48c14a3a111cb4
Diffstat (limited to 'pkg/tcpip/link/muxed/BUILD')
-rw-r--r-- | pkg/tcpip/link/muxed/BUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pkg/tcpip/link/muxed/BUILD b/pkg/tcpip/link/muxed/BUILD new file mode 100644 index 000000000..92d2e3290 --- /dev/null +++ b/pkg/tcpip/link/muxed/BUILD @@ -0,0 +1,31 @@ +load("//tools/go_stateify:defs.bzl", "go_library", "go_test") + +package(licenses = ["notice"]) # Apache 2.0 + +go_library( + name = "injectable", + srcs = ["injectable.go"], + importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/injectable", + visibility = [ + "//visibility:public", + ], + deps = [ + "//pkg/tcpip", + "//pkg/tcpip/buffer", + "//pkg/tcpip/stack", + ], +) + +go_test( + name = "injectable_test", + size = "small", + srcs = ["injectable_test.go"], + embed = [":injectable"], + deps = [ + "//pkg/tcpip", + "//pkg/tcpip/buffer", + "//pkg/tcpip/link/fdbased", + "//pkg/tcpip/network/ipv4", + "//pkg/tcpip/stack", + ], +) |