blob: d34030401bfeff15aa132c9c1ce8d9db13f48cbb [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: [
Tyler Gunn305a3bd2019-08-14 14:36:17 -07009 "ext"
Sasha Smundakaa267522019-01-10 12:56:09 -080010 ],
11 static_libs: [
12 "android-common",
13 "com.android.vcard",
14 "guava",
15 ],
16 // The Jacoco tool analyzes code coverage when running unit tests on the
17 // application. This configuration line selects which packages will be analyzed,
18 // leaving out code which is tested by other means (e.g. static libraries) that
19 // would dilute the coverage results. These options do not affect regular
20 // production builds.
21 jacoco: {
22 include_filter: ["com.android.providers.contacts.*"],
23 },
24 platform_apis: true,
25 certificate: "shared",
26 privileged: true,
27 optimize: {
28 proguard_flags_files: ["proguard.flags"],
29 },
30}