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

load("//tools/go_stateify:defs.bzl", "go_library")

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