summaryrefslogtreecommitdiffhomepage
path: root/pkg/shim/utils/BUILD
blob: 2eb82f63c2ad4d1f964d4f1d806338264fd26026 (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
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "utils",
    srcs = [
        "annotations.go",
        "errors.go",
        "utils.go",
        "volumes.go",
    ],
    visibility = [
        "//pkg/shim:__subpackages__",
        "//shim:__subpackages__",
    ],
    deps = [
        "@com_github_containerd_containerd//errdefs:go_default_library",
        "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
        "@org_golang_google_grpc//codes:go_default_library",
        "@org_golang_google_grpc//status:go_default_library",
    ],
)

go_test(
    name = "utils_test",
    size = "small",
    srcs = [
        "errors_test.go",
        "volumes_test.go",
    ],
    library = ":utils",
    deps = [
        "@com_github_containerd_containerd//errdefs:go_default_library",
        "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
    ],
)