summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/checker/BUILD
blob: ac5203031b792b4e3f3723919e228e2e151ee73d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package(licenses = ["notice"])  # BSD

load("@io_bazel_rules_go//go:def.bzl", "go_library")

go_library(
    name = "checker",
    testonly = 1,
    srcs = ["checker.go"],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/checker",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/header",
        "//pkg/tcpip/seqnum",
    ],
)