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