summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/muxed/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip/link/muxed/BUILD')
-rw-r--r--pkg/tcpip/link/muxed/BUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkg/tcpip/link/muxed/BUILD b/pkg/tcpip/link/muxed/BUILD
deleted file mode 100644
index 84cfae784..000000000
--- a/pkg/tcpip/link/muxed/BUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
-
-package(
- licenses = ["notice"], # Apache 2.0
-)
-
-go_library(
- name = "muxed",
- srcs = ["injectable.go"],
- importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/muxed",
- visibility = [
- "//visibility:public",
- ],
- deps = [
- "//pkg/tcpip",
- "//pkg/tcpip/buffer",
- "//pkg/tcpip/stack",
- ],
-)
-
-go_test(
- name = "muxed_test",
- size = "small",
- srcs = ["injectable_test.go"],
- embed = [":muxed"],
- deps = [
- "//pkg/tcpip",
- "//pkg/tcpip/buffer",
- "//pkg/tcpip/link/fdbased",
- "//pkg/tcpip/network/ipv4",
- "//pkg/tcpip/stack",
- ],
-)