commit | de54bca47ff6a902edef6b4e1730edafc35581af | [log] [tgz] |
---|---|---|
author | Damien Martin-Guillerez <dmarting@google.com> | Mon Feb 29 10:49:43 2016 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Mon Feb 29 17:40:13 2016 +0000 |
tree | 20e2a5028b160b755065a5a5b4a16d8c613ba387 | |
parent | a39d6f84e106a80bd63d8ec89e86d65c2c70aede [diff] [blame] |
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
diff --git a/scripts/BUILD b/scripts/BUILD index cc4d157..26aab55 100644 --- a/scripts/BUILD +++ b/scripts/BUILD
@@ -31,3 +31,9 @@ "//src/test/shell:bashunit", ], ) + +filegroup( + name = "srcs", + srcs = glob(["**"]), + visibility = ["//:__pkg__"], +)