The Android Open Source Project | b558dec | 2008-10-21 07:00:00 -0700 | [diff] [blame^] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := user |
| 5 | |
| 6 | LOCAL_SRC_FILES := $(call all-subdir-java-files) |
| 7 | |
| 8 | # TODO: Remove dependency of application on the test runner (android.test.runner) |
| 9 | # library. |
| 10 | LOCAL_JAVA_LIBRARIES := ext android.test.runner |
| 11 | |
| 12 | # We depend on googlelogin-client also, but that is already being included by google-framework |
| 13 | LOCAL_STATIC_JAVA_LIBRARIES := google-framework |
| 14 | |
| 15 | LOCAL_PACKAGE_NAME := CalendarProvider |
| 16 | |
| 17 | include $(BUILD_PACKAGE) |
| 18 | |
| 19 | # Use the following include to make our test apk. |
| 20 | include $(call all-makefiles-under,$(LOCAL_PATH)) |