blob: b6bddce91bec80b6eff735072032225c079acc92 [file] [log] [blame]
Sasha Smundak3a600182019-01-10 19:04:14 -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
18 // The Jacoco tool analyzes code coverage when running unit tests on the
19 // application. This configuration line selects which packages will be analyzed,
20 // leaving out code which is tested by other means (e.g. static libraries) that
21 // would dilute the coverage results. These options do not affect regular
22 // production builds.
23 jacoco: {
24 include_filter: ["com.android.providers.contacts.*"],
25 },
26 platform_apis: true,
27 certificate: "shared",
28 privileged: true,
29 optimize: {
30 proguard_flags_files: ["proguard.flags"],
31 },
32}