summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/hash/BUILD
blob: e1b5f26c46e5fc8969770a2a692e9b371224cc3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package(licenses = ["notice"])  # Apache 2.0

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

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