aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/xcode
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 /src/tools/xcode
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 'src/tools/xcode')
-rw-r--r--src/tools/xcode/realpath/BUILD6
-rw-r--r--src/tools/xcode/stdredirect/BUILD6
2 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/xcode/realpath/BUILD b/src/tools/xcode/realpath/BUILD
index 0dc2455a81..8642f9c7c7 100644
--- a/src/tools/xcode/realpath/BUILD
+++ b/src/tools/xcode/realpath/BUILD
@@ -9,3 +9,9 @@ genrule(
output_to_bindir = 1,
visibility = ["//visibility:public"],
)
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//src:__pkg__"],
+)
diff --git a/src/tools/xcode/stdredirect/BUILD b/src/tools/xcode/stdredirect/BUILD
index 77b03249fa..41b2f99812 100644
--- a/src/tools/xcode/stdredirect/BUILD
+++ b/src/tools/xcode/stdredirect/BUILD
@@ -11,3 +11,9 @@ genrule(
output_to_bindir = 1,
visibility = ["//visibility:public"],
)
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//src:__pkg__"],
+)