aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/objc
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-29 10:49:43 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-02-29 17:40:13 +0000
commitde54bca47ff6a902edef6b4e1730edafc35581af (patch)
tree20e2a5028b160b755065a5a5b4a16d8c613ba387 /tools/objc
parenta39d6f84e106a80bd63d8ec89e86d65c2c70aede (diff)
Add a bazel-srcs target to the top-level package containing all Bazel sources
This target include all non tests targets of Bazel to do integration tests of bootstrapping. -- MOS_MIGRATED_REVID=115830741
Diffstat (limited to 'tools/objc')
-rw-r--r--tools/objc/BUILD2
-rw-r--r--tools/objc/sim_devices/BUILD6
2 files changed, 7 insertions, 1 deletions
diff --git a/tools/objc/BUILD b/tools/objc/BUILD
index 3b7f489e9f..5936761791 100644
--- a/tools/objc/BUILD
+++ b/tools/objc/BUILD
@@ -40,7 +40,7 @@ filegroup(
name = "srcs",
srcs = glob(["**"]) + [
"//tools/objc/memleaks:srcs",
- "//tools/objc/sim_devices:BUILD",
+ "//tools/objc/sim_devices:srcs",
],
)
diff --git a/tools/objc/sim_devices/BUILD b/tools/objc/sim_devices/BUILD
index 5d81e1bdd3..3938abbc2a 100644
--- a/tools/objc/sim_devices/BUILD
+++ b/tools/objc/sim_devices/BUILD
@@ -5,3 +5,9 @@ ios_device(
ios_version = "8.4",
type = "IPHONE",
)
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//tools/objc:__pkg__"],
+)