summaryrefslogtreecommitdiffhomepage
path: root/pkg/shim/v1/utils/BUILD
blob: 9045781e1bf63b3e53a4ea90d93cfaa1af8efce0 (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", "go_test")

package(licenses = ["notice"])

go_library(
    name = "utils",
    srcs = [
        "utils.go",
        "volumes.go",
    ],
    visibility = [
        "//pkg/shim:__subpackages__",
        "//shim:__subpackages__",
    ],
    deps = [
        "@com_github_containerd_cri//pkg/annotations:go_default_library",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
    ],
)

go_test(
    name = "utils_test",
    size = "small",
    srcs = ["volumes_test.go"],
    library = ":utils",
)