summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/BUILD
blob: 047f8329a1e922c4ffab9b5f3a025310d4fad545 (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
package(licenses = ["notice"])

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

go_library(
    name = "tcpip",
    srcs = [
        "tcpip.go",
        "time_unsafe.go",
    ],
    importpath = "gvisor.dev/gvisor/pkg/tcpip",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/tcpip/buffer",
        "//pkg/waiter",
    ],
)

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