summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/channel/BUILD
blob: 9a6f49c4550bb4a8e330e74678b14ee23c7681b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package(licenses = ["notice"])  # Apache 2.0

load("//tools/go_stateify:defs.bzl", "go_library")

go_library(
    name = "channel",
    srcs = ["channel.go"],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/channel",
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/stack",
    ],
)