summaryrefslogtreecommitdiffhomepage
path: root/runsc/specutils/BUILD
blob: a22ab789a53797e154c4f1ee2c9d78edf4e819ea (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
package(licenses = ["notice"])  # Apache 2.0

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

go_library(
    name = "specutils",
    srcs = ["specutils.go"],
    importpath = "gvisor.googlesource.com/gvisor/runsc/specutils",
    visibility = [
        "//runsc:__subpackages__",
    ],
    deps = [
        "//pkg/abi/linux",
        "//pkg/log",
        "//pkg/sentry/kernel/auth",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
    ],
)

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