Format build files with buildifier 0.15.0 Change-Id: Ic94140ef1caf4b995df2b37feeeb69bd2b4d0549
diff --git a/BUILD b/BUILD index 89097bb..46ddcfe 100644 --- a/BUILD +++ b/BUILD
@@ -1,9 +1,9 @@ load("//tools/bzl:junit.bzl", "junit_tests") load( "//tools/bzl:plugin.bzl", - "gerrit_plugin", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS", + "gerrit_plugin", ) gerrit_plugin(
diff --git a/bazlets.bzl b/bazlets.bzl index e14e488..f97b72c 100644 --- a/bazlets.bzl +++ b/bazlets.bzl
@@ -1,17 +1,16 @@ NAME = "com_googlesource_gerrit_bazlets" def load_bazlets( - commit, - local_path = None - ): - if not local_path: - native.git_repository( - name = NAME, - remote = "https://gerrit.googlesource.com/bazlets", - commit = commit, - ) - else: - native.local_repository( - name = NAME, - path = local_path, - ) + commit, + local_path = None): + if not local_path: + native.git_repository( + name = NAME, + remote = "https://gerrit.googlesource.com/bazlets", + commit = commit, + ) + else: + native.local_repository( + name = NAME, + path = local_path, + )
diff --git a/external_plugin_deps.bzl b/external_plugin_deps.bzl index 43d72aa..7efc19c 100644 --- a/external_plugin_deps.bzl +++ b/external_plugin_deps.bzl
@@ -1,33 +1,33 @@ load("//tools/bzl:maven_jar.bzl", "maven_jar") def external_plugin_deps(): - maven_jar( - name = "mockito", - artifact = "org.mockito:mockito-core:2.16.0", - sha1 = "a022ee494c753789a1e7cae75099de81d8a5cea6", - deps = [ - "@byte_buddy//jar", - "@byte_buddy_agent//jar", - "@objenesis//jar", - ], - ) + maven_jar( + name = "mockito", + artifact = "org.mockito:mockito-core:2.16.0", + sha1 = "a022ee494c753789a1e7cae75099de81d8a5cea6", + deps = [ + "@byte_buddy//jar", + "@byte_buddy_agent//jar", + "@objenesis//jar", + ], + ) - BYTE_BUDDY_VERSION = "1.7.9" + BYTE_BUDDY_VERSION = "1.7.9" - maven_jar( - name = "byte_buddy", - artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION, - sha1 = "51218a01a882c04d0aba8c028179cce488bbcb58", - ) + maven_jar( + name = "byte_buddy", + artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION, + sha1 = "51218a01a882c04d0aba8c028179cce488bbcb58", + ) - maven_jar( - name = "byte_buddy_agent", - artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION, - sha1 = "a6c65f9da7f467ee1f02ff2841ffd3155aee2fc9", - ) + maven_jar( + name = "byte_buddy_agent", + artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION, + sha1 = "a6c65f9da7f467ee1f02ff2841ffd3155aee2fc9", + ) - maven_jar( - name = "objenesis", - artifact = "org.objenesis:objenesis:2.6", - sha1 = "639033469776fd37c08358c6b92a4761feb2af4b", - ) + maven_jar( + name = "objenesis", + artifact = "org.objenesis:objenesis:2.6", + sha1 = "639033469776fd37c08358c6b92a4761feb2af4b", + )
diff --git a/tools/bzl/classpath.bzl b/tools/bzl/classpath.bzl index dfcbe9c..d5764f7 100644 --- a/tools/bzl/classpath.bzl +++ b/tools/bzl/classpath.bzl
@@ -1,2 +1,4 @@ -load("@com_googlesource_gerrit_bazlets//tools:classpath.bzl", - "classpath_collector") +load( + "@com_googlesource_gerrit_bazlets//tools:classpath.bzl", + "classpath_collector", +)
diff --git a/tools/bzl/plugin.bzl b/tools/bzl/plugin.bzl index a2e438f..0b25d23 100644 --- a/tools/bzl/plugin.bzl +++ b/tools/bzl/plugin.bzl
@@ -1,6 +1,6 @@ load( "@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", - "gerrit_plugin", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS", + "gerrit_plugin", )