mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 08:57:12 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
61
third_party/java/auto/BUILD
vendored
Normal file
61
third_party/java/auto/BUILD
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["notice"]) # Apache License 2.0
|
||||
|
||||
java_library(
|
||||
name = "auto_common",
|
||||
exports = ["@auto_common//jar"],
|
||||
)
|
||||
|
||||
java_library(
|
||||
name = "auto_factory",
|
||||
exported_plugins = [":auto_factory_plugin"],
|
||||
exports = ["@auto_factory//jar"],
|
||||
)
|
||||
|
||||
java_library(
|
||||
name = "auto_service",
|
||||
exported_plugins = [":auto_service_plugin"],
|
||||
exports = ["@auto_service//jar"],
|
||||
)
|
||||
|
||||
java_library(
|
||||
name = "auto_value",
|
||||
exported_plugins = [":auto_value_plugin"],
|
||||
exports = ["@auto_value//jar"],
|
||||
)
|
||||
|
||||
java_plugin(
|
||||
name = "auto_factory_plugin",
|
||||
processor_class = "com.google.auto.factory.processor.AutoFactoryProcessor",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@auto_factory//jar",
|
||||
"@bazel_tools//third_party:guava",
|
||||
"@javawriter//jar",
|
||||
":auto_common",
|
||||
],
|
||||
)
|
||||
|
||||
java_plugin(
|
||||
name = "auto_service_plugin",
|
||||
processor_class = "com.google.auto.service.processor.AutoServiceProcessor",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@auto_service//jar",
|
||||
"@bazel_tools//third_party:guava",
|
||||
":auto_common",
|
||||
],
|
||||
)
|
||||
|
||||
java_plugin(
|
||||
name = "auto_value_plugin",
|
||||
processor_class = "com.google.auto.value.processor.AutoValueProcessor",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@auto_value//jar",
|
||||
"@bazel_tools//third_party:guava",
|
||||
"@bazel_tools//third_party:jsr305",
|
||||
":auto_common",
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue