mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
46 lines
997 B
Python
46 lines
997 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
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/header",
|
|
"//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/header",
|
|
"//pkg/tcpip/stack",
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
],
|
|
)
|