summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs_vfs2/BUILD
blob: 577b827a5bb263d5c3fde6a8352337da220bcde0 (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
load("//tools:defs.bzl", "go_library")
load("//tools/go_generics:defs.bzl", "go_template")

package(licenses = ["notice"])

go_template(
    name = "refs_template",
    srcs = [
        "refs_template.go",
    ],
    types = [
        "T",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
        "//pkg/refs",
    ],
)

go_library(
    name = "refs_vfs2",
    srcs = ["refs.go"],
    visibility = ["//pkg/sentry:internal"],
    deps = ["//pkg/context"],
)