blob: 3c3374275f11d835210b504347a2c32982cdf65d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package(licenses = ["notice"]) # Apache 2.0
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
go_library(
name = "ports",
srcs = ["ports.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/ports",
visibility = ["//:sandbox"],
deps = ["//pkg/tcpip"],
)
go_test(
name = "ports_test",
srcs = ["ports_test.go"],
embed = [":ports"],
deps = [
"//pkg/tcpip",
],
)
|