gvisor/test/iptables/BUILD

37 lines
680 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_util.go",
"nat.go",
],
visibility = ["//test/iptables:__subpackages__"],
2020-01-09 21:41:52 +00:00
deps = [
"//pkg/test/testutil",
2020-01-09 21:41:52 +00:00
],
)
go_test(
name = "iptables_test",
srcs = [
"iptables_test.go",
],
data = ["//test/iptables/runner"],
library = ":iptables",
tags = [
"local",
"manual",
],
deps = [
"//pkg/test/dockerutil",
"//pkg/test/testutil",
],
)