blob: 6ed7c6da079f6fc24316343d2ddb65303dcf8dc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
load("//tools/go_stateify:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "iptables",
srcs = [
"iptables.go",
"targets.go",
"types.go",
],
importpath = "gvisor.dev/gvisor/pkg/tcpip/iptables",
visibility = ["//visibility:public"],
deps = [
"//pkg/tcpip",
],
)
|