Depend on //cluster/lib instead of :all-srcs.

Cleanup after #51649

Bug: #51642
pull/6/head
Matt Liggett 2017-08-30 15:48:47 -07:00
parent 92db97dfcc
commit b7ecd72b3f
1 changed files with 9 additions and 9 deletions

View File

@ -51,26 +51,26 @@ pkg_tar(
sh_test(
name = "common_test",
srcs = ["common.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)
sh_test(
name = "clientbin_test",
srcs = ["clientbin.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)
sh_test(
name = "kube-util_test",
srcs = ["kube-util.sh"],
data = [
":all-srcs",
deps = [
"//cluster/lib",
"//hack/lib",
],
deps = ["//hack/lib"],
)