summaryrefslogtreecommitdiffhomepage
path: root/pkg/rand/BUILD
blob: 2bb59f895c529e48389f04e60f12a7424de63b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
package(licenses = ["notice"])  # Apache 2.0

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

go_library(
    name = "rand",
    srcs = ["rand.go"],
    importpath = "gvisor.googlesource.com/gvisor/pkg/rand",
    visibility = ["//:sandbox"],
    deps = ["@org_golang_x_sys//unix:go_default_library"],
)