Home | History | Annotate | Download | only in Calendar
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 # Include res dir from chips
      5 chips_dir := ../../../frameworks/ex/chips/res
      6 res_dirs := $(chips_dir) res
      7 
      8 LOCAL_EMMA_COVERAGE_FILTER := +com.android.calendar.*
      9 
     10 LOCAL_MODULE_TAGS := optional
     11 
     12 LOCAL_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
     21 LOCAL_STATIC_JAVA_LIBRARIES := \
     22 		android-common \
     23 		android-common-chips \
     24 		calendar-common
     25 LOCAL_SDK_VERSION := current
     26 
     27 LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
     28 
     29 LOCAL_PACKAGE_NAME := Calendar
     30 
     31 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     32 
     33 LOCAL_AAPT_FLAGS := --auto-add-overlay
     34 LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips
     35 
     36 include $(BUILD_PACKAGE)
     37 
     38 # Use the following include to make our test apk.
     39 include $(call all-makefiles-under,$(LOCAL_PATH))
     40