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.
41 lines
1.1 KiB
41 lines
1.1 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "packages_modules_ExtServices_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["packages_modules_ExtServices_license"],
|
|
}
|
|
|
|
android_test {
|
|
name: "ExtServicesUnitTests",
|
|
|
|
// Include all test java files.
|
|
srcs: ["src/**/*.java"],
|
|
|
|
libs: [
|
|
"android.test.runner",
|
|
"android.test.base",
|
|
],
|
|
|
|
static_libs: [
|
|
"ExtServices-core",
|
|
"androidx.test.rules",
|
|
"compatibility-device-util-axt",
|
|
"mockito-target-extended-minus-junit4",
|
|
"androidx.test.espresso.core",
|
|
"truth-prebuilt",
|
|
"testables",
|
|
"testng",
|
|
],
|
|
jni_libs: [
|
|
"libdexmakerjvmtiagent",
|
|
"libextservices_jni",
|
|
"libstaticjvmtiagent",
|
|
],
|
|
test_suites: ["general-tests", "mts-extservices"],
|
|
min_sdk_version: "30",
|
|
sdk_version: "test_current",
|
|
compile_multilib: "both",
|
|
}
|