summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs/BUILD
blob: 98150ba8f1f6f23665b21f040f4026b23c6af5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package(licenses = ["notice"])  # Apache 2.0

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

go_template_instance(
    name = "weak_ref_list",
    out = "weak_ref_list.go",
    package = "refs",
    prefix = "weakRef",
    template = "//pkg/ilist:generic_list",
    types = {
        "Element": "*WeakRef",
        "Linker": "*WeakRef",
    },
)

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

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