gvisor/test/iptables/BUILD

42 lines
834 B
Python
Raw Normal View History

load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "iptables",
2020-01-09 21:41:52 +00:00
testonly = 1,
srcs = [
"filter_input.go",
"filter_output.go",
"iptables.go",
"iptables_unsafe.go",
"iptables_util.go",
"nat.go",
],
visibility = ["//test/iptables:__subpackages__"],
2020-01-09 21:41:52 +00:00
deps = [
"//pkg/binary",
"//pkg/hostarch",
"//pkg/test/testutil",
"@org_golang_x_sys//unix:go_default_library",
2020-01-09 21:41:52 +00:00
],
)
go_test(
name = "iptables_test",
size = "large",
srcs = [
"iptables_test.go",
],
data = ["//test/iptables/runner"],
library = ":iptables",
tags = [
"local",
"manual",
],
deps = [
"//pkg/test/dockerutil",
"//pkg/test/testutil",
],
)