Format BUILD files with buildifier

Change-Id: I5e2a286866b63a8fa2bd29cc2fe432fab2bbe0af
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2017-08-17 23:22:11 +01:00
parent 723d67b83e
commit 904e9f8b73
2 changed files with 8 additions and 8 deletions

View File

@ -115,9 +115,9 @@ java_library(
testonly = 1,
visibility = ["//visibility:public"],
exports = [
"@junit//jar",
"@hamcrest_core//jar",
"@hamcrest_library//jar",
"@hamcrest_core//jar",
"@hamcrest_library//jar",
"@junit//jar",
],
)

View File

@ -33,7 +33,7 @@ DATA = [
tests(glob(
["tst/**/*.java"],
exclude = HELPERS + DATA
exclude = HELPERS + DATA,
))
java_library(
@ -54,8 +54,8 @@ java_import(
)
genrule2(
name = 'tst_rsrc_jar',
cmd = 'o=$$PWD/$@ && tar cf - $(SRCS) | tar -C $$TMP --strip-components=2 -xf - && cd $$TMP && zip -qr $$o .',
srcs = glob(['tst-rsrc/**']),
outs = ['tst_rsrc.jar',],
name = "tst_rsrc_jar",
srcs = glob(["tst-rsrc/**"]),
outs = ["tst_rsrc.jar"],
cmd = "o=$$PWD/$@ && tar cf - $(SRCS) | tar -C $$TMP --strip-components=2 -xf - && cd $$TMP && zip -qr $$o .",
)