summaryrefslogtreecommitdiffhomepage
path: root/runsc/console/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/console/BUILD')
-rw-r--r--runsc/console/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/runsc/console/BUILD b/runsc/console/BUILD
new file mode 100644
index 000000000..06924bccd
--- /dev/null
+++ b/runsc/console/BUILD
@@ -0,0 +1,17 @@
+load("//tools:defs.bzl", "go_library")
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "console",
+ srcs = [
+ "console.go",
+ ],
+ visibility = [
+ "//runsc:__subpackages__",
+ ],
+ deps = [
+ "@com_github_kr_pty//:go_default_library",
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
+)