summaryrefslogtreecommitdiffhomepage
path: root/runsc/config/BUILD
diff options
context:
space:
mode:
authorChong Cai <chongc@google.com>2021-08-18 13:11:36 -0700
committergVisor bot <gvisor-bot@google.com>2021-08-18 13:13:49 -0700
commit75b5a4f455c2e81bb38dcf786c788089ad1aebf7 (patch)
tree2901c8304c70d79361d2c7e241879a34e747d010 /runsc/config/BUILD
parente0bf52250289d23cff5c6ef10aa60b9cf0997647 (diff)
Add control configs
Also plumber the controls through runsc PiperOrigin-RevId: 391594318
Diffstat (limited to 'runsc/config/BUILD')
-rw-r--r--runsc/config/BUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/runsc/config/BUILD b/runsc/config/BUILD
index b1672bb9d..64295d283 100644
--- a/runsc/config/BUILD
+++ b/runsc/config/BUILD
@@ -11,6 +11,7 @@ go_library(
visibility = ["//:sandbox"],
deps = [
"//pkg/refs",
+ "//pkg/sentry/control:control_go_proto",
"//pkg/sentry/watchdog",
"//pkg/sync",
"//runsc/flag",
@@ -24,5 +25,8 @@ go_test(
"config_test.go",
],
library = ":config",
- deps = ["//runsc/flag"],
+ deps = [
+ "//pkg/sentry/control:control_go_proto",
+ "//runsc/flag",
+ ],
)