aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java
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 /third_party/java
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 'third_party/java')
-rw-r--r--third_party/java/apkbuilder/BUILD6
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/java/apkbuilder/BUILD b/third_party/java/apkbuilder/BUILD
index aa08eee382..3274a12150 100644
--- a/third_party/java/apkbuilder/BUILD
+++ b/third_party/java/apkbuilder/BUILD
@@ -24,3 +24,9 @@ java_binary(
"//third_party:guava",
],
)
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//third_party:__pkg__"],
+)