mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
25 lines
469 B
Python
25 lines
469 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "testutil",
|
|
testonly = True,
|
|
srcs = [
|
|
"testutil.go",
|
|
"testutil_unsafe.go",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//pkg/tcpip"],
|
|
)
|
|
|
|
go_test(
|
|
name = "testutil_test",
|
|
srcs = ["testutil_test.go"],
|
|
library = ":testutil",
|
|
deps = ["//pkg/tcpip"],
|
|
)
|