35 lines
982 B
Plaintext
35 lines
982 B
Plaintext
//#############################################
|
|
// Compile Robolectric utils
|
|
//#############################################
|
|
|
|
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-Apache-2.0
|
|
default_applicable_licenses: ["external_robolectric-shadows_license"],
|
|
}
|
|
|
|
java_library_host {
|
|
name: "Robolectric_utils",
|
|
srcs: ["src/main/java/**/*.java"],
|
|
}
|
|
|
|
//#############################################
|
|
// Compile Robolectric utils tests
|
|
//#############################################
|
|
|
|
java_test_host {
|
|
name: "Robolectric_utils_tests",
|
|
srcs: ["src/test/java/**/*.java"],
|
|
static_libs: [
|
|
"Robolectric_utils",
|
|
"hamcrest",
|
|
"guava",
|
|
"junit",
|
|
"truth-prebuilt",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|