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

4 5 6 7
# Include res dir from chips
chips_dir := ../../../frameworks/ex/chips/res
res_dirs := $(chips_dir) res

8 9
LOCAL_EMMA_COVERAGE_FILTER := +com.android.calendar.*

10
LOCAL_MODULE_TAGS := optional
11 12 13

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

Andy McFadden's avatar
Andy McFadden committed
14
# bundled
15 16 17 18
#LOCAL_STATIC_JAVA_LIBRARIES += \
#		android-common \
#		android-common-chips \
#		calendar-common
Andy McFadden's avatar
Andy McFadden committed
19 20

# unbundled
21 22 23
LOCAL_STATIC_JAVA_LIBRARIES := \
		android-common \
		android-common-chips \
24
		android-support-v4 \
25 26
		calendar-common
LOCAL_SDK_VERSION := current
27

28 29
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))

30 31
LOCAL_PACKAGE_NAME := Calendar

32 33
LOCAL_PROGUARD_FLAG_FILES := proguard.flags

34 35
LOCAL_AAPT_FLAGS := --auto-add-overlay
LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips
36

37 38 39 40
include $(BUILD_PACKAGE)

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