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

package(licenses = ["notice"])

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