summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/iptables/BUILD
blob: 173f148daf8772a0700ae83c575c5539637f6573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package(licenses = ["notice"])

load("//tools/go_stateify:defs.bzl", "go_library", "go_test")

go_library(
    name = "iptables",
    srcs = [
        "iptables.go",
        "targets.go",
        "types.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/iptables",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/state",
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/header",
    ],
)