The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Jean-Baptiste Queru | 134e08c | 2010-01-05 16:27:28 -0800 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 5 | |
Jeff Hamilton | 0284cb8 | 2009-05-04 12:32:23 -0700 | [diff] [blame] | 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Jeff Hamilton | 7109133 | 2010-05-25 22:13:01 -0500 | [diff] [blame] | 8 | LOCAL_SRC_FILES += \ |
| 9 | src/com/android/providers/contacts/EventLogTags.logtags |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 10 | |
Wink Saville | e0c5d80 | 2012-06-11 21:14:16 -0700 | [diff] [blame^] | 11 | LOCAL_JAVA_LIBRARIES := ext telephony-common |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 12 | |
Daisuke Miyakawa | f9648a0 | 2011-07-17 16:16:23 -0700 | [diff] [blame] | 13 | LOCAL_STATIC_JAVA_LIBRARIES += android-common com.android.vcard guava |
Dianne Hackborn | 3f0445d | 2010-02-24 19:59:48 -0800 | [diff] [blame] | 14 | |
Guang Zhu | cc103ab | 2010-07-29 10:52:45 -0700 | [diff] [blame] | 15 | # The Emma tool analyzes code coverage when running unit tests on the |
| 16 | # application. This configuration line selects which packages will be analyzed, |
| 17 | # leaving out code which is tested by other means (e.g. static libraries) that |
| 18 | # would dilute the coverage results. These options do not affect regular |
| 19 | # production builds. |
| 20 | LOCAL_EMMA_COVERAGE_FILTER := +com.android.providers.contacts.* |
| 21 | |
Guang Zhu | f1ee431 | 2010-07-29 10:52:45 -0700 | [diff] [blame] | 22 | # The Emma tool analyzes code coverage when running unit tests on the |
| 23 | # application. This configuration line selects which packages will be analyzed, |
| 24 | # leaving out code which is tested by other means (e.g. static libraries) that |
| 25 | # would dilute the coverage results. These options do not affect regular |
| 26 | # production builds. |
| 27 | LOCAL_EMMA_COVERAGE_FILTER := +com.android.providers.contacts.* |
| 28 | |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 29 | LOCAL_PACKAGE_NAME := ContactsProvider |
| 30 | LOCAL_CERTIFICATE := shared |
| 31 | |
Dmitri Plotnikov | 1e2232d | 2010-12-01 13:16:44 -0800 | [diff] [blame] | 32 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
| 33 | |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 34 | include $(BUILD_PACKAGE) |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 35 | |
| 36 | # Use the following include to make our test apk. |
| 37 | include $(call all-makefiles-under,$(LOCAL_PATH)) |