summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/muxed/BUILD
diff options
context:
space:
mode:
authorIan Gudger <igudger@google.com>2019-02-08 15:36:22 -0800
committerShentubot <shentubot@google.com>2019-02-08 15:37:20 -0800
commit967326131a875047c2b2d51bf4b2984ceefd4730 (patch)
tree6a56b0ec74f09cee3640ad2a8505dbe61b98cdec /pkg/tcpip/link/muxed/BUILD
parentb2aa213dd2e19d88b4edf839d20e5bf51534be62 (diff)
Fix build error.
PiperOrigin-RevId: 233139020 Change-Id: I2e7089fa25d20e5662eb941054a684d41f5d3e12
Diffstat (limited to 'pkg/tcpip/link/muxed/BUILD')
-rw-r--r--pkg/tcpip/link/muxed/BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/tcpip/link/muxed/BUILD b/pkg/tcpip/link/muxed/BUILD
index 92d2e3290..f991dca83 100644
--- a/pkg/tcpip/link/muxed/BUILD
+++ b/pkg/tcpip/link/muxed/BUILD
@@ -3,9 +3,9 @@ load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"]) # Apache 2.0
go_library(
- name = "injectable",
+ name = "muxed",
srcs = ["injectable.go"],
- importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/injectable",
+ importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/muxed",
visibility = [
"//visibility:public",
],
@@ -17,10 +17,10 @@ go_library(
)
go_test(
- name = "injectable_test",
+ name = "muxed_test",
size = "small",
srcs = ["injectable_test.go"],
- embed = [":injectable"],
+ embed = [":muxed"],
deps = [
"//pkg/tcpip",
"//pkg/tcpip/buffer",