summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/header/BUILD
blob: 20144ee8546f9f43f40b4a3be6e64540145de67e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "header",
    srcs = [
        "arp.go",
        "checksum.go",
        "eth.go",
        "gre.go",
        "gue.go",
        "icmpv4.go",
        "icmpv6.go",
        "igmp.go",
        "interfaces.go",
        "ipv4.go",
        "ipv6.go",
        "ipv6_extension_headers.go",
        "ipv6_fragment.go",
        "mld.go",
        "ndp_neighbor_advert.go",
        "ndp_neighbor_solicit.go",
        "ndp_options.go",
        "ndp_router_advert.go",
        "ndp_router_solicit.go",
        "ndpoptionidentifier_string.go",
        "tcp.go",
        "udp.go",
    ],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/seqnum",
        "@com_github_google_btree//:go_default_library",
    ],
)

go_test(
    name = "header_x_test",
    size = "small",
    srcs = [
        "checksum_test.go",
        "igmp_test.go",
        "ipv4_test.go",
        "ipv6_test.go",
        "ipversion_test.go",
        "tcp_test.go",
    ],
    deps = [
        ":header",
        "//pkg/rand",
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/testutil",
        "@com_github_google_go_cmp//cmp:go_default_library",
    ],
)

go_test(
    name = "header_test",
    size = "small",
    srcs = [
        "eth_test.go",
        "ipv6_extension_headers_test.go",
        "mld_test.go",
        "ndp_test.go",
    ],
    library = ":header",
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/testutil",
        "@com_github_google_go_cmp//cmp:go_default_library",
    ],
)