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.
40 lines
980 B
40 lines
980 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "prebuilts_misc_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
// SPDX-license-identifier-BSD
|
|
// SPDX-license-identifier-EPL
|
|
default_applicable_licenses: ["prebuilts_misc_license"],
|
|
}
|
|
|
|
java_library_host {
|
|
name: "jvm-jacoco-reporter",
|
|
|
|
srcs: ["src/main/java/**/*.java"],
|
|
|
|
static_libs: [
|
|
"asm-analysis-7.0",
|
|
"asm-commons-7.0",
|
|
"asm-7.0",
|
|
"asm-tree-7.0",
|
|
"asm-util-7.0",
|
|
"jvm-jacoco-report",
|
|
"commons-cli-1.2",
|
|
],
|
|
}
|
|
|
|
java_import_host {
|
|
name: "jvm-jacoco-agent",
|
|
jars: ["lib/jacocoagent.jar"],
|
|
}
|
|
|
|
java_import_host {
|
|
name: "jvm-jacoco-report",
|
|
jars: [
|
|
"lib/org.jacoco.core-0.8.0.201801022044.jar",
|
|
"lib/org.jacoco.report-0.8.0.201801022044.jar",
|
|
],
|
|
}
|