summaryrefslogtreecommitdiffhomepage
path: root/runsc/cgroup/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/cgroup/BUILD')
-rw-r--r--runsc/cgroup/BUILD23
1 files changed, 0 insertions, 23 deletions
diff --git a/runsc/cgroup/BUILD b/runsc/cgroup/BUILD
deleted file mode 100644
index d4c7bdfbb..000000000
--- a/runsc/cgroup/BUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-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"],
-)