summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs/BUILD
blob: 4b7c9345d15125780aabc375f42e5a0b18442321 (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
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
load("//tools/go_stateify:defs.bzl", "go_stateify")

go_stateify(
    name = "refs_state",
    srcs = [
        "refcounter.go",
        "refcounter_state.go",
    ],
    out = "refs_state.go",
    package = "refs",
)

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

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