Sasha Smundak | aa26752 | 2019-01-10 12:56:09 -0800 | [diff] [blame] | 1 | android_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 Gunn | 305a3bd | 2019-08-14 14:36:17 -0700 | [diff] [blame^] | 9 | "ext" |
Sasha Smundak | aa26752 | 2019-01-10 12:56:09 -0800 | [diff] [blame] | 10 | ], |
| 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 | } |