blob: 9cd1065457f801609615063ac28789bfe2560779 [file] [log] [blame]
Bob Badour6be37882021-02-12 16:36:19 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "prebuilts_misc_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 // SPDX-license-identifier-BSD
8 // SPDX-license-identifier-EPL
9 default_applicable_licenses: ["prebuilts_misc_license"],
10}
11
Dan Willemsen152805f2019-03-23 12:42:25 -070012java_library_host {
13 name: "jvm-jacoco-reporter",
14
15 srcs: ["src/main/java/**/*.java"],
16
17 static_libs: [
Colin Crosse1d20f62020-07-18 13:08:50 -070018 "asm-analysis-7.0",
19 "asm-commons-7.0",
20 "asm-7.0",
21 "asm-tree-7.0",
22 "asm-util-7.0",
Dan Willemsen152805f2019-03-23 12:42:25 -070023 "jvm-jacoco-report",
24 "commons-cli-1.2",
25 ],
26}
27
28java_import_host {
29 name: "jvm-jacoco-agent",
30 jars: ["lib/jacocoagent.jar"],
31}
32
33java_import_host {
34 name: "jvm-jacoco-report",
35 jars: [
36 "lib/org.jacoco.core-0.8.0.201801022044.jar",
37 "lib/org.jacoco.report-0.8.0.201801022044.jar",
38 ],
39}