summaryrefslogtreecommitdiffhomepage
path: root/runsc/specutils/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/specutils/BUILD')
-rw-r--r--runsc/specutils/BUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/runsc/specutils/BUILD b/runsc/specutils/BUILD
new file mode 100644
index 000000000..62d4f5113
--- /dev/null
+++ b/runsc/specutils/BUILD
@@ -0,0 +1,33 @@
+load("//tools:defs.bzl", "go_library", "go_test")
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "specutils",
+ srcs = [
+ "cri.go",
+ "fs.go",
+ "namespace.go",
+ "specutils.go",
+ ],
+ visibility = ["//:sandbox"],
+ deps = [
+ "//pkg/abi/linux",
+ "//pkg/bits",
+ "//pkg/log",
+ "//pkg/sentry/kernel/auth",
+ "@com_github_cenkalti_backoff//:go_default_library",
+ "@com_github_mohae_deepcopy//:go_default_library",
+ "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
+ "@com_github_syndtr_gocapability//capability:go_default_library",
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
+)
+
+go_test(
+ name = "specutils_test",
+ size = "small",
+ srcs = ["specutils_test.go"],
+ library = ":specutils",
+ deps = ["@com_github_opencontainers_runtime-spec//specs-go:go_default_library"],
+)