Android.mk revision 18cabd263b91d7d09f3b93b0bf6c78533bbc2c6a
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
15LOCAL_STATIC_JAVA_LIBRARIES += android-common android-common-chips
16
17# unbundled
18#LOCAL_STATIC_JAVA_LIBRARIES := android-common android-common-chips
19#LOCAL_SDK_VERSION := current
20
21LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
22
23LOCAL_PACKAGE_NAME := Calendar
24
25LOCAL_PROGUARD_FLAG_FILES := proguard.flags
26
27
28include $(BUILD_PACKAGE)
29
30# Use the following include to make our test apk.
31include $(call all-makefiles-under,$(LOCAL_PATH))
32