aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 3401a32a90..e6e2a2a000 100644
--- a/BUILD
+++ b/BUILD
@@ -58,3 +58,14 @@ pkg_tar(
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
+
+genrule(
+ name = "bazel-distfile",
+ srcs = [
+ ":bazel-srcs",
+ "//src:derived_java_srcs",
+ ],
+ outs = ["bazel-distfile.zip"],
+ cmd = "$(location :combine_distfiles.sh) $@ $(SRCS)",
+ tools = ["combine_distfiles.sh"],
+)