forked from PolymerLabs/arcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
32 lines (27 loc) · 853 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
load(
"//third_party/java/arcs/build_defs:native.oss.bzl",
"java_library",
"java_plugin",
)
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
# Standalone deps of Java libraries and plugins
java_plugin(
name = "autovalue_plugin",
processor_class = "com.google.auto.value.processor.AutoValueProcessor",
deps = ["@maven//:com_google_auto_value_auto_value"],
)
java_library(
name = "autovalue",
exported_plugins = [":autovalue_plugin"],
neverlink = 1, # Only used at compilation rather than at run-time.
exports = ["@maven//:com_google_auto_value_auto_value_annotations"],
)
java_plugin(
name = "dagger_compiler",
generates_api = 1,
processor_class = "dagger.internal.codegen.ComponentProcessor",
deps = [
"@maven//:com_google_dagger_dagger_compiler",
],
)