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 | |
The Android Open Source Project | 7d2e821 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := user |
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 | |
| 11 | LOCAL_PACKAGE_NAME := ContactsProvider |
| 12 | LOCAL_CERTIFICATE := shared |
| 13 | |
| 14 | include $(BUILD_PACKAGE) |
Jeff Hamilton | 4f86436 | 2009-04-23 02:29:07 -0500 | [diff] [blame] | 15 | |
| 16 | # Use the following include to make our test apk. |
| 17 | include $(call all-makefiles-under,$(LOCAL_PATH)) |