summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/BUILD
blob: 186a0d3bf183dc0246bc198c450120bf5f43c374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
load("//tools/go_stateify:defs.bzl", "go_stateify")

go_stateify(
    name = "tcpip_state",
    srcs = [
        "tcpip.go",
    ],
    out = "tcpip_state.go",
    package = "tcpip",
)

go_library(
    name = "tcpip",
    srcs = [
        "tcpip.go",
        "tcpip_state.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/state",
        "//pkg/tcpip/buffer",
        "//pkg/waiter",
    ],
)

go_test(
    name = "tcpip_test",
    size = "small",
    srcs = ["tcpip_test.go"],
    embed = [":tcpip"],
)