summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs/BUILD
blob: 8273851394b60303e8b3bc235cf96e327cf65c86 (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
35
36
37
38
39
load("@io_bazel_rules_go//go:def.bzl", "go_test")

package(licenses = ["notice"])

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

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.dev/gvisor/pkg/refs",
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
    ],
)

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