summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/channel/BUILD
blob: b8b93e78e0a6604a0c38839c93c616034fbcf9f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "channel",
    srcs = ["channel.go"],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/sync",
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/stack",
    ],
)