1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# Include res dir from chips
5chips_dir := ../../../frameworks/ex/chips/res
6res_dirs := $(chips_dir) res
7
8LOCAL_EMMA_COVERAGE_FILTER := +com.android.calendar.*
9
10LOCAL_MODULE_TAGS := optional
11
12LOCAL_SRC_FILES := $(call all-java-files-under,src)
13
14# bundled
15#LOCAL_STATIC_JAVA_LIBRARIES += \
16#		android-common \
17#		android-common-chips \
18#		calendar-common
19
20# unbundled
21LOCAL_STATIC_JAVA_LIBRARIES := \
22		android-common \
23		android-common-chips \
24		calendar-common
25LOCAL_SDK_VERSION := current
26
27LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
28
29LOCAL_PACKAGE_NAME := Calendar
30
31LOCAL_PROGUARD_FLAG_FILES := proguard.flags
32
33
34include $(BUILD_PACKAGE)
35
36# Use the following include to make our test apk.
37include $(call all-makefiles-under,$(LOCAL_PATH))
38