blob: 29b30be9c18c8e65a56023f6bf8d31835fec4dba (
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.dev/gvisor/pkg/tcpip/hash/jenkins",
visibility = [
"//visibility:public",
],
)
go_test(
name = "jenkins_test",
size = "small",
srcs = [
"jenkins_test.go",
],
embed = [":jenkins"],
)
|