aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-11 22:38:49 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-11 22:52:11 +0000
commit195ed9aa345cfbe7bc9e5258a963674cef86aea4 (patch)
tree6ea339d23d2fd9652cd7e49b95c22e50520b0034 /src
parent848740c23f101ead71a26ab62cbe6ef1a7d164dd (diff)
Use objective-C dependencies only for test that might requires them.
Fixes #770 to an acceptable extent. -- MOS_MIGRATED_REVID=111889925
Diffstat (limited to 'src')
-rw-r--r--src/test/shell/bazel/BUILD11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/test/shell/bazel/BUILD b/src/test/shell/bazel/BUILD
index 3083f6bb72..b6f2dba217 100644
--- a/src/test/shell/bazel/BUILD
+++ b/src/test/shell/bazel/BUILD
@@ -45,7 +45,6 @@ filegroup(
"testenv.sh",
"testing_server.py",
":langtools-copy",
- ":objc-deps",
"//examples:srcs",
"//external:bootclasspath",
"//external:extdir",
@@ -71,7 +70,10 @@ sh_test(
name = "bazel_example_test",
size = "large",
srcs = ["bazel_example_test.sh"],
- data = [":test-deps"],
+ data = [
+ ":objc-deps",
+ ":test-deps",
+ ],
shard_count = 3,
)
@@ -109,7 +111,10 @@ sh_test(
sh_test(
name = "bazel_objc_test",
srcs = ["bazel_objc_test.sh"],
- data = [":test-deps"],
+ data = [
+ ":objc-deps",
+ ":test-deps",
+ ],
)
sh_test(