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

4 5 6
# Include res dir from chips
chips_dir := ../../../frameworks/ex/chips/res
res_dirs := $(chips_dir) res
Sara Ting's avatar
Sara Ting committed
7
src_dirs := src
8

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

11
LOCAL_MODULE_TAGS := optional
12

13
LOCAL_SRC_FILES := $(call all-java-files-under,$(src_dirs))
14

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

# unbundled
22 23 24
LOCAL_STATIC_JAVA_LIBRARIES := \
		android-common \
		android-common-chips \
25
		android-support-v4 \
26
		calendar-common
Michael Chan's avatar
Michael Chan committed
27 28

LOCAL_SDK_VERSION := 17
29

30 31
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))

32 33
LOCAL_PACKAGE_NAME := Calendar

34 35
LOCAL_PROGUARD_FLAG_FILES := proguard.flags

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

39 40 41 42
include $(BUILD_PACKAGE)

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