27 lines
1020 B
Plaintext
27 lines
1020 B
Plaintext
|
|
//#############################################
|
||
|
|
// Compile Robolectric shadows multidex
|
||
|
|
//#############################################
|
||
|
|
|
||
|
|
package {
|
||
|
|
// See: http://go/android-license-faq
|
||
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||
|
|
// all of the 'license_kinds' from "external_robolectric-shadows_license"
|
||
|
|
// to get the below license kinds:
|
||
|
|
// SPDX-license-identifier-MIT
|
||
|
|
default_applicable_licenses: ["external_robolectric_license"],
|
||
|
|
}
|
||
|
|
|
||
|
|
java_library_host {
|
||
|
|
name: "Robolectric_shadows_multidex_upstream",
|
||
|
|
libs: [
|
||
|
|
"Robolectric_annotations_upstream",
|
||
|
|
"Robolectric_shadowapi_upstream",
|
||
|
|
"robolectric-host-android-support-multidex_upstream",
|
||
|
|
"robolectric-javax.annotation-api-1.2",
|
||
|
|
"robolectric-host-android_all_upstream",
|
||
|
|
],
|
||
|
|
plugins: ["Robolectric_processor_upstream"],
|
||
|
|
javacflags: ["-Aorg.robolectric.annotation.processing.shadowPackage=org.robolectric.shadows.multidex"],
|
||
|
|
srcs: ["src/main/java/**/*.java"],
|
||
|
|
}
|