summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs/BUILD
blob: 3ea877ccfaae588a886d52958c831b6ddfe00216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package(licenses = ["notice"])  # Apache 2.0

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

go_library(
    name = "refs",
    srcs = [
        "refcounter.go",
        "refcounter_state.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/refs",
    visibility = ["//:sandbox"],
    deps = ["//pkg/ilist"],
)

go_test(
    name = "refs_test",
    size = "small",
    srcs = ["refcounter_test.go"],
    embed = [":refs"],
)