Browse Source

Format BUILD files with buildifier

Change-Id: I5e2a286866b63a8fa2bd29cc2fe432fab2bbe0af
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
tags/v4.9.0.201710071750-r
David Pursehouse 6 years ago
parent
commit
904e9f8b73
2 changed files with 8 additions and 8 deletions
  1. 3
    3
      lib/BUILD
  2. 5
    5
      org.eclipse.jgit.test/BUILD

+ 3
- 3
lib/BUILD 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",
],
)


+ 5
- 5
org.eclipse.jgit.test/BUILD 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 .",
)

Loading…
Cancel
Save