Home | History | Annotate | Download | only in Mms
      1 # Copyright 2007-2008 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 # Include res dir from chips
      6 chips_dir := ../../../frameworks/ex/chips/res
      7 res_dirs := $(chips_dir) res
      8 
      9 $(shell rm -f $(LOCAL_PATH)/chips)
     10 
     11 LOCAL_MODULE_TAGS := optional
     12 
     13 LOCAL_SRC_FILES := $(call all-java-files-under, src)
     14 
     15 LOCAL_PACKAGE_NAME := Mms
     16 
     17 # Builds against the public SDK
     18 #LOCAL_SDK_VERSION := current
     19 
     20 LOCAL_STATIC_JAVA_LIBRARIES += android-common jsr305
     21 LOCAL_STATIC_JAVA_LIBRARIES += android-common-chips
     22 
     23 LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
     24 LOCAL_AAPT_FLAGS := --auto-add-overlay
     25 LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips
     26 
     27 LOCAL_REQUIRED_MODULES := SoundRecorder
     28 
     29 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     30 
     31 include $(BUILD_PACKAGE)
     32 
     33 # This finds and builds the test apk as well, so a single make does both.
     34 include $(call all-makefiles-under,$(LOCAL_PATH))
     35