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) |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 8 | |
| 9 | LOCAL_JAVA_LIBRARIES := ext |
| 10 | |
Dianne Hackborn | 3f0445d | 2010-02-24 19:59:48 -0800 | [diff] [blame^] | 11 | LOCAL_STATIC_JAVA_LIBRARIES += android-common |
| 12 | |
The Android Open Source Project | c731b0c | 2009-03-03 19:32:39 -0800 | [diff] [blame] | 13 | LOCAL_PACKAGE_NAME := ContactsProvider |
| 14 | LOCAL_CERTIFICATE := shared |
| 15 | |
| 16 | include $(BUILD_PACKAGE) |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 17 | |
| 18 | # Use the following include to make our test apk. |
| 19 | include $(call all-makefiles-under,$(LOCAL_PATH)) |