summaryrefslogtreecommitdiffhomepage
path: root/runsc/cgroup/BUILD
blob: d4c7bdfbb95e7f497701128ab847194953cc0a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "cgroup",
    srcs = ["cgroup.go"],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
        "//runsc/specutils",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
    ],
)

go_test(
    name = "cgroup_test",
    size = "small",
    srcs = ["cgroup_test.go"],
    library = ":cgroup",
    tags = ["local"],
)