summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/BUILD
blob: 36ddaa6929e132b03de9b833ace46390a594e174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package(licenses = ["notice"])  # BSD

load("@io_bazel_rules_go//go:def.bzl", "go_test")

go_test(
    name = "ip_test",
    size = "small",
    srcs = [
        "ip_test.go",
    ],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/header",
        "//pkg/tcpip/network/ipv4",
        "//pkg/tcpip/network/ipv6",
        "//pkg/tcpip/stack",
    ],
)