summaryrefslogtreecommitdiffhomepage
path: root/pkg/dhcp/BUILD
blob: b40860aac2a79131e6ec29c3a391f9930c6ef717 (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
package(licenses = ["notice"])  # BSD

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

go_library(
    name = "dhcp",
    srcs = [
        "client.go",
        "dhcp.go",
        "server.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/dhcp",
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/network/ipv4",
        "//pkg/tcpip/stack",
        "//pkg/tcpip/transport/udp",
        "//pkg/waiter",
    ],
)

go_test(
    name = "dhcp_test",
    size = "small",
    srcs = ["dhcp_test.go"],
    embed = [":dhcp"],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/link/channel",
        "//pkg/tcpip/link/sniffer",
        "//pkg/tcpip/network/ipv4",
        "//pkg/tcpip/stack",
        "//pkg/tcpip/transport/udp",
    ],
)