summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/header/BUILD
blob: 3aa2cfb24e0fc85511050a81ca91d8976109a3c6 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package(licenses = ["notice"])  # Apache 2.0

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

go_stateify(
    name = "tcp_header_state",
    srcs = [
        "tcp.go",
    ],
    out = "tcp_header_state.go",
    package = "header",
)

go_library(
    name = "header",
    srcs = [
        "arp.go",
        "checksum.go",
        "eth.go",
        "gue.go",
        "icmpv4.go",
        "icmpv6.go",
        "interfaces.go",
        "ipv4.go",
        "ipv6.go",
        "ipv6_fragment.go",
        "tcp.go",
        "tcp_header_state.go",
        "udp.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/header",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/state",
        "//pkg/tcpip",
        "//pkg/tcpip/seqnum",
    ],
)

go_test(
    name = "header_test",
    size = "small",
    srcs = [
        "ipversion_test.go",
        "tcp_test.go",
    ],
    deps = [
        ":header",
    ],
)