You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
862 B
29 lines
862 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_auto_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["external_auto_license"],
|
|
}
|
|
|
|
java_library {
|
|
name: "auto_service_annotations",
|
|
host_supported: true,
|
|
srcs: ["annotations/src/main/java/**/*.java"],
|
|
sdk_version: "core_current",
|
|
visibility: ["//visibility:public"],
|
|
}
|
|
|
|
java_plugin {
|
|
name: "auto_service_plugin",
|
|
srcs: ["processor/src/main/java/**/*.java"],
|
|
static_libs: [
|
|
"auto_common",
|
|
"auto_service_annotations",
|
|
"guava",
|
|
],
|
|
processor_class: "com.google.auto.service.processor.AutoServiceProcessor",
|
|
visibility: ["//visibility:public"],
|
|
}
|