blob: c3ce8fe32fbc0b4af15d1549a963928ae9be4912 [file] [log] [blame]
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
// To update:
// - git fetch aosp
// - git merge --no-ff --allow-unrelated-histories aosp/upstream-main
// - Update the version and last_upgrade_date of the METADATA file
// - git commit --amend
java_library {
name: "TestParameterInjector",
srcs: [
"src/main/java/**/*.java",
],
static_libs: [
"guava",
"auto_value_annotations",
"junit",
"libprotobuf-java-lite",
"snakeyaml",
],
plugins: [
"auto_value_plugin",
"auto_annotation_plugin",
],
host_supported: true,
}
java_test_host {
name: "TestParameterInjectorTest",
srcs: ["src/test/java/**/*.java"],
static_libs: [
"TestParameterInjector",
"truth",
],
test_options: {
unit_test: true,
},
}