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
970 B
40 lines
970 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "packages_apps_Contacts_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
// SPDX-license-identifier-CC-BY
|
|
default_applicable_licenses: ["packages_apps_Contacts_license"],
|
|
}
|
|
|
|
android_test {
|
|
name: "ContactsTests",
|
|
|
|
certificate: "shared",
|
|
|
|
srcs: ["src/**/*.java"],
|
|
|
|
instrumentation_for: "Contacts",
|
|
|
|
sdk_version: "current",
|
|
min_sdk_version: "21",
|
|
|
|
static_libs: [
|
|
"androidx.test.rules",
|
|
"androidx.test.runner",
|
|
"androidx.test.ext.junit",
|
|
"hamcrest-library",
|
|
"mockito-target-minus-junit4",
|
|
"ub-uiautomator",
|
|
],
|
|
|
|
libs: [
|
|
"android.test.runner.stubs",
|
|
"android.test.base.stubs",
|
|
"android.test.mock.stubs",
|
|
],
|
|
|
|
test_suites: ["general-tests"],
|
|
}
|