summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/iptables/BUILD
blob: d1b73cfdf34353c7944f3eae963e6e4d728ae520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "iptables",
    srcs = [
        "iptables.go",
        "targets.go",
        "types.go",
    ],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/log",
        "//pkg/tcpip",
        "//pkg/tcpip/header",
    ],
)