Bazel: Reformat build files

Reformat the Bazel build files with the buildifier tool [1].

The style is different for Bazel files. Most notably, indentation level
is 4 spaces instead of 2, and " is used instead of '.

[1] https://github.com/bazelbuild/buildifier

Change-Id: I95c0c6f11b6d76572797853b4ebb5cee5ebd3c98
This commit is contained in:
David Ostrovsky
2016-11-30 08:52:06 +01:00
committed by David Pursehouse
parent 8836c8bbfe
commit fa18907d7f
96 changed files with 3377 additions and 3284 deletions

View File

@@ -1,54 +1,54 @@
java_library(
name = 'guice',
exports = [
':guice_library',
':javax-inject',
':multibindings',
],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "guice",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = [
":guice_library",
":javax-inject",
":multibindings",
],
)
java_library(
name = 'guice_library',
exports = ['@guice_library//jar'],
runtime_deps = ['aopalliance'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "guice_library",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@guice_library//jar"],
runtime_deps = ["aopalliance"],
)
java_library(
name = 'guice-assistedinject',
exports = ['@guice_assistedinject//jar'],
runtime_deps = [':guice'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "guice-assistedinject",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@guice_assistedinject//jar"],
runtime_deps = [":guice"],
)
java_library(
name = 'guice-servlet',
exports = ['@guice_servlet//jar'],
runtime_deps = [':guice'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "guice-servlet",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@guice_servlet//jar"],
runtime_deps = [":guice"],
)
java_library(
name = 'aopalliance',
exports = ['@aopalliance//jar'],
data = ['//lib:LICENSE-PublicDomain'],
name = "aopalliance",
data = ["//lib:LICENSE-PublicDomain"],
exports = ["@aopalliance//jar"],
)
java_library(
name = 'javax-inject',
exports = ['@javax_inject//jar'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "javax-inject",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@javax_inject//jar"],
)
java_library(
name = 'multibindings',
exports = [ '@multibindings//jar' ],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
name = "multibindings",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@multibindings//jar"],
)