summaryrefslogtreecommitdiffhomepage
path: root/runsc/container/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/container/BUILD')
-rw-r--r--runsc/container/BUILD15
1 files changed, 7 insertions, 8 deletions
diff --git a/runsc/container/BUILD b/runsc/container/BUILD
index 72e2304bf..d72d05c13 100644
--- a/runsc/container/BUILD
+++ b/runsc/container/BUILD
@@ -2,13 +2,6 @@ package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
-go_binary(
- name = "uds_test_app",
- srcs = [
- "uds_test_app.go",
- ],
-)
-
go_library(
name = "container",
srcs = [
@@ -42,7 +35,7 @@ go_test(
"multi_container_test.go",
],
data = [
- ":uds_test_app",
+ ":test_app",
"//runsc",
],
embed = [":container"],
@@ -64,3 +57,9 @@ go_test(
"@org_golang_x_sys//unix:go_default_library",
],
)
+
+go_binary(
+ name = "test_app",
+ srcs = ["test_app.go"],
+ deps = ["@com_github_google_subcommands//:go_default_library"],
+)