summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/hash/jenkins/BUILD
blob: ce2194a4deeb8e69a0d268f2345de7d40d7770e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "jenkins",
    srcs = ["jenkins.go"],
    importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/hash/jenkins",
    visibility = [
        "//visibility:public",
    ],
)

go_test(
    name = "jenkins_test",
    size = "small",
    srcs = [
        "jenkins_test.go",
    ],
    embed = [":jenkins"],
)