gerrit/webapp/BUILD
David Ostrovsky c75278248e Dissolve gerrit-war top-level directory
Change-Id: I2eaa09545e2ac8ef8f1346ab0cb203d00f811a38
2017-10-31 11:02:37 -04:00

13 lines
263 B
Python

load("//tools/bzl:genrule2.bzl", "genrule2")
genrule2(
name = "assets",
srcs = glob(
["**/*"],
exclude = ["BUILD"],
),
outs = ["assets.zip"],
cmd = "cd webapp; zip -qr $$ROOT/$@ .",
visibility = ["//visibility:public"],
)