blob: ff83b8f4fd48c264283c79574d8b8abe9c7013a8 [file] [log] [blame]
Sasha Smundakaa267522019-01-10 12:56:09 -08001android_app {
2 name: "ContactsProvider",
3 // Only compile source java files in this apk.
4 srcs: [
5 "src/**/*.java",
6 "src/com/android/providers/contacts/EventLogTags.logtags",
7 ],
8 libs: [
9 "ext",
10 "telephony-common",
11 ],
12 static_libs: [
13 "android-common",
14 "com.android.vcard",
15 "guava",
16 ],
17 // The Jacoco tool analyzes code coverage when running unit tests on the
18 // application. This configuration line selects which packages will be analyzed,
19 // leaving out code which is tested by other means (e.g. static libraries) that
20 // would dilute the coverage results. These options do not affect regular
21 // production builds.
22 jacoco: {
23 include_filter: ["com.android.providers.contacts.*"],
24 },
25 platform_apis: true,
26 certificate: "shared",
27 privileged: true,
28 optimize: {
29 proguard_flags_files: ["proguard.flags"],
30 },
31}