fa18907d7f
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
46 lines
1.0 KiB
Python
46 lines
1.0 KiB
Python
[java_library(
|
|
name = n,
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@%s//jar" % n.replace("-", "_")],
|
|
) for n in [
|
|
"ant",
|
|
"colt",
|
|
"dev",
|
|
"javax-validation",
|
|
"jsinterop-annotations",
|
|
"tapestry",
|
|
"user",
|
|
"w3c-css-sac",
|
|
]]
|
|
|
|
java_library(
|
|
name = "user-neverlink",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
neverlink = 1,
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@user//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "dev-neverlink",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
neverlink = 1,
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@dev//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "javax-validation_src",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@javax_validation//jar:src"],
|
|
)
|
|
|
|
java_library(
|
|
name = "jsinterop-annotations_src",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jsinterop_annotations//jar:src"],
|
|
)
|