aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.bp15
1 files changed, 9 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index 27f8749..33402cc 100644
--- a/Android.bp
+++ b/Android.bp
@@ -5,17 +5,20 @@ package {
java_library {
name: "TestParameterInjector",
srcs: [
- "src/main/java/**/*.java"
+ "src/main/java/**/*.java",
],
static_libs: [
"guava",
"auto_value_annotations",
"junit",
"libprotobuf-java-lite",
- "snakeyaml"
+ "snakeyaml",
],
- plugins: ["auto_value_plugin", "auto_annotation_plugin"],
- host_supported: true
+ plugins: [
+ "auto_value_plugin",
+ "auto_annotation_plugin",
+ ],
+ host_supported: true,
}
java_test_host {
@@ -23,9 +26,9 @@ java_test_host {
srcs: ["src/test/java/**/*.java"],
static_libs: [
"TestParameterInjector",
- "truth-prebuilt"
+ "truth",
],
test_options: {
unit_test: true,
},
-} \ No newline at end of file
+}