89 lines
2.7 KiB
Makefile
Executable file
89 lines
2.7 KiB
Makefile
Executable file
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
incallui_dir := InCallUI
|
|
contacts_common_dir := ../ContactsCommon
|
|
phone_common_dir := ../PhoneCommon
|
|
|
|
ifeq ($(TARGET_BUILD_APPS),)
|
|
support_library_root_dir := frameworks/support
|
|
else
|
|
support_library_root_dir := prebuilts/sdk/current/support
|
|
endif
|
|
|
|
src_dirs := src \
|
|
$(incallui_dir)/src \
|
|
$(contacts_common_dir)/src \
|
|
$(phone_common_dir)/src
|
|
|
|
res_dirs := res \
|
|
$(incallui_dir)/res \
|
|
$(contacts_common_dir)/res \
|
|
$(contacts_common_dir)/icons/res \
|
|
$(phone_common_dir)/res
|
|
|
|
src_dirs += \
|
|
src-N \
|
|
$(incallui_dir)/src-N \
|
|
$(contacts_common_dir)/src-N \
|
|
$(phone_common_dir)/src-N
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) $(call all-Iaidl-files-under, $(src_dirs))
|
|
|
|
LOCAL_SRC_FILES += ../../providers/ContactsProvider/src/com/android/providers/contacts/NameSplitter.java \
|
|
../../providers/ContactsProvider/src/com/android/providers/contacts/HanziToPinyin.java \
|
|
../../providers/ContactsProvider/src/com/android/providers/contacts/util/NeededForTesting.java
|
|
|
|
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) \
|
|
$(support_library_root_dir)/v7/cardview/res \
|
|
$(support_library_root_dir)/v7/recyclerview/res \
|
|
$(support_library_root_dir)/v7/appcompat/res \
|
|
$(support_library_root_dir)/design/res
|
|
|
|
LOCAL_ASSET_DIR += $(LOCAL_PATH)/assets
|
|
|
|
LOCAL_JAVA_LIBRARIES := telephony-common \
|
|
telephony-ext \
|
|
ims-common
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v7.appcompat \
|
|
--extra-packages android.support.v7.cardview \
|
|
--extra-packages android.support.v7.recyclerview \
|
|
--extra-packages android.support.design \
|
|
--extra-packages com.android.incallui \
|
|
--extra-packages com.android.contacts.common \
|
|
--extra-packages com.android.phone.common
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-common \
|
|
android-support-v13 \
|
|
android-support-v4 \
|
|
android-support-v7-appcompat \
|
|
android-support-v7-cardview \
|
|
android-support-v7-recyclerview \
|
|
android-support-design \
|
|
com.android.vcard \
|
|
guava \
|
|
libphonenumber \
|
|
ims-ext-common \
|
|
phonebook_wrapper \
|
|
telephony-common \
|
|
org.cyanogenmod.platform.internal \
|
|
org.cyanogenmod.platform.sdk
|
|
|
|
LOCAL_PACKAGE_NAME := Dialer
|
|
LOCAL_CERTIFICATE := shared
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags $(incallui_dir)/proguard.flags
|
|
|
|
# LOCAL_SDK_VERSION := current
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|