
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
67 lines
1.6 KiB
Python
67 lines
1.6 KiB
Python
java_library(
|
|
name = "powermock-module-junit4",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":powermock-module-junit4-common",
|
|
"//lib:junit",
|
|
"@powermock_module_junit4//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "powermock-module-junit4-common",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":powermock-reflect",
|
|
"//lib:junit",
|
|
"@powermock_module_junit4_common//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "powermock-reflect",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
"//lib:junit",
|
|
"//lib/easymock:objenesis",
|
|
"@powermock_reflect//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "powermock-api-easymock",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":powermock-api-support",
|
|
"//lib/easymock",
|
|
"@powermock_api_easymock//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "powermock-api-support",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":powermock-core",
|
|
":powermock-reflect",
|
|
"//lib:junit",
|
|
"@powermock_api_support//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "powermock-core",
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":powermock-reflect",
|
|
"//lib:javassist",
|
|
"//lib:junit",
|
|
],
|
|
)
|