Android.mk 668 Bytes
Newer Older
1 2 3
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

4
LOCAL_MODULE_TAGS := optional
5 6 7

LOCAL_SRC_FILES := $(call all-java-files-under,src)

8 9
#LOCAL_SDK_VERSION := current

Doug Zongker's avatar
Doug Zongker committed
10
# TODO: Remove dependency of application on the test runner (android.test.runner)
11 12 13
# library.
LOCAL_JAVA_LIBRARIES := android.test.runner

14
# TODO Remove this once LaunchActivity is cleaned up
Doug Zongker's avatar
Doug Zongker committed
15
LOCAL_STATIC_JAVA_LIBRARIES := gsf-client
16

17 18 19
LOCAL_STATIC_JAVA_LIBRARIES += android-common
LOCAL_STATIC_JAVA_LIBRARIES += calendar # Shared calendar code

20 21 22 23 24 25
LOCAL_PACKAGE_NAME := Calendar

include $(BUILD_PACKAGE)

# Use the following include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))