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

package(licenses = ["notice"])

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