summaryrefslogtreecommitdiffhomepage
path: root/runsc/specutils/BUILD
blob: 43851a22f1b170ed8b8e2d37ef0c9a8620a9986d (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
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "specutils",
    srcs = [
        "cri.go",
        "fs.go",
        "namespace.go",
        "specutils.go",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/abi/linux",
        "//pkg/bits",
        "//pkg/log",
        "//pkg/sentry/kernel/auth",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_mohae_deepcopy//:go_default_library",
        "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
        "@com_github_syndtr_gocapability//capability:go_default_library",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)

go_test(
    name = "specutils_test",
    size = "small",
    srcs = ["specutils_test.go"],
    library = ":specutils",
    deps = ["@com_github_opencontainers_runtime_spec//specs-go:go_default_library"],
)