blob: 647fee7ab5307bac9555a590970ff318b3e77f18 [file] [log] [blame]
Bob Badour4ff1b9d2021-02-12 15:23:39 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "packages_apps_Contacts_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 // SPDX-license-identifier-CC-BY
Bob Badour6827f392022-01-27 21:54:40 -08008 default_applicable_licenses: [
9 "packages_apps_Contacts_license",
10 "Android-Apache-2.0",
11 ],
Bob Badour4ff1b9d2021-02-12 15:23:39 -080012}
13
Colin Crossd35d5ad2019-12-07 07:32:56 -080014android_test {
15 name: "ContactsTests",
16
17 certificate: "shared",
18
19 srcs: ["src/**/*.java"],
20
21 instrumentation_for: "Contacts",
22
23 sdk_version: "current",
24 min_sdk_version: "21",
25
26 static_libs: [
27 "androidx.test.rules",
Marcus Hagerottb700f112021-02-05 15:31:36 -080028 "androidx.test.runner",
29 "androidx.test.ext.junit",
Colin Crossd35d5ad2019-12-07 07:32:56 -080030 "hamcrest-library",
31 "mockito-target-minus-junit4",
32 "ub-uiautomator",
33 ],
34
35 libs: [
36 "android.test.runner.stubs",
37 "android.test.base.stubs",
38 "android.test.mock.stubs",
39 ],
John Shao83d09892020-01-16 12:51:43 -080040
41 test_suites: ["general-tests"],
Colin Crossd35d5ad2019-12-07 07:32:56 -080042}