Files
gerrit/lib/auto/BUILD
Yuxuan 'fishy' Wang 75b98f77d9 bazel: add license to appropriate lib/ targets
This is to prepare for implementing genlicenses rule in bazel.

Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
2016-09-26 16:42:38 +08:00

23 lines
548 B
Python

java_plugin(
name = 'auto-annotation-plugin',
processor_class = 'com.google.auto.value.processor.AutoAnnotationProcessor',
deps = ['@auto_value//jar'],
)
java_plugin(
name = 'auto-value-plugin',
processor_class = 'com.google.auto.value.processor.AutoValueProcessor',
deps = ['@auto_value//jar'],
)
java_library(
name = 'auto-value',
exported_plugins = [
':auto-annotation-plugin',
':auto-value-plugin',
],
exports = ['@auto_value//jar'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
)