summaryrefslogtreecommitdiffhomepage
path: root/pkg/shim/runtimeoptions/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/shim/runtimeoptions/BUILD')
-rw-r--r--pkg/shim/runtimeoptions/BUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkg/shim/runtimeoptions/BUILD b/pkg/shim/runtimeoptions/BUILD
new file mode 100644
index 000000000..029be7c09
--- /dev/null
+++ b/pkg/shim/runtimeoptions/BUILD
@@ -0,0 +1,32 @@
+load("//tools:defs.bzl", "go_library", "go_test", "proto_library")
+
+package(licenses = ["notice"])
+
+proto_library(
+ name = "api",
+ srcs = [
+ "runtimeoptions.proto",
+ ],
+)
+
+go_library(
+ name = "runtimeoptions",
+ srcs = [
+ "runtimeoptions.go",
+ "runtimeoptions_cri.go",
+ ],
+ visibility = ["//pkg/shim:__pkg__"],
+ deps = ["@com_github_gogo_protobuf//proto:go_default_library"],
+)
+
+go_test(
+ name = "runtimeoptions_test",
+ size = "small",
+ srcs = ["runtimeoptions_test.go"],
+ library = ":runtimeoptions",
+ deps = [
+ "@com_github_containerd_containerd//runtime/v1/shim/v1:go_default_library",
+ "@com_github_containerd_typeurl//:go_default_library",
+ "@com_github_gogo_protobuf//proto:go_default_library",
+ ],
+)