summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-01-03 19:45:55 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-01-03 19:45:55 +0000
commitac4db5fb603e2e3e25ab98b373c8ba44f235e762 (patch)
tree26b42204221109124fd87583156ef47c42980baf
parent586cac19b73e39cd98817d8a74861cbd170b66f7 (diff)
parent3aed2aabe1af6fee1499c79756aff3438ff13a70 (diff)
downloadmisc-ac4db5fb603e2e3e25ab98b373c8ba44f235e762.tar.gz
Merge "Export asm-6.0 as device modules"
-rw-r--r--common/asm/Android.bp14
1 files changed, 10 insertions, 4 deletions
diff --git a/common/asm/Android.bp b/common/asm/Android.bp
index 1256551a..be4304ff 100644
--- a/common/asm/Android.bp
+++ b/common/asm/Android.bp
@@ -32,23 +32,29 @@ java_import_host {
jars: ["asm-tree-5.2.jar"],
}
-java_import_host {
+// These should be host-only, since there is no bytecode on the device to be
+// parsed with ASM, but jacocoagent currently needs them to compile (b/69671801)
+java_import {
name: "asm-6.0",
+ host_supported: true,
jars: ["asm-6.0.jar"],
}
-java_import_host {
+java_import {
name: "asm-analysis-6.0",
+ host_supported: true,
jars: ["asm-analysis-6.0.jar"],
}
-java_import_host {
+java_import {
name: "asm-commons-6.0",
+ host_supported: true,
jars: ["asm-commons-6.0.jar"],
}
-java_import_host {
+java_import {
name: "asm-tree-6.0",
+ host_supported: true,
jars: ["asm-tree-6.0.jar"],
}