1//########################################## 2// Compile Robolectric junit 3//########################################## 4 5package { 6 // See: http://go/android-license-faq 7 // A large-scale-change added 'default_applicable_licenses' to import 8 // all of the 'license_kinds' from "external_robolectric-shadows_license" 9 // to get the below license kinds: 10 // SPDX-license-identifier-MIT 11 default_applicable_licenses: ["external_robolectric-shadows_license"], 12} 13 14java_library_host { 15 name: "Robolectric_junit", 16 libs: [ 17 "Robolectric_annotations", 18 "Robolectric_shadowapi", 19 "Robolectric_sandbox", 20 "Robolectric_utils", 21 "asm-commons-6.0", 22 "guava", 23 "asm-tree-6.0", 24 "hamcrest", 25 "junit", 26 "asm-6.0", 27 "jsr305", 28 ], 29 srcs: ["src/main/java/**/*.java"], 30} 31