summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/internal/ip/BUILD
blob: fd944ce99a9c040b6e3adf02a1118e037f5dcb8e (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
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "ip",
    srcs = [
        "duplicate_address_detection.go",
        "errors.go",
        "generic_multicast_protocol.go",
        "stats.go",
    ],
    visibility = [
        "//pkg/tcpip/network/arp:__pkg__",
        "//pkg/tcpip/network/ipv4:__pkg__",
        "//pkg/tcpip/network/ipv6:__pkg__",
    ],
    deps = [
        "//pkg/sync",
        "//pkg/tcpip",
        "//pkg/tcpip/stack",
    ],
)

go_test(
    name = "ip_x_test",
    size = "small",
    srcs = [
        "duplicate_address_detection_test.go",
        "generic_multicast_protocol_test.go",
    ],
    deps = [
        ":ip",
        "//pkg/sync",
        "//pkg/tcpip",
        "//pkg/tcpip/faketime",
        "//pkg/tcpip/stack",
        "@com_github_google_go_cmp//cmp:go_default_library",
    ],
)