Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := optional |
| 5 | |
Sailesh Nepal | 93970f6 | 2016-02-10 16:15:22 -0800 | [diff] [blame] | 6 | incallui_dir := InCallUI |
Chiao Cheng | 9d4f3b2 | 2012-09-05 16:00:16 -0700 | [diff] [blame] | 7 | contacts_common_dir := ../ContactsCommon |
Sai Cheemalapati | fd723ca | 2014-06-19 12:30:07 -0700 | [diff] [blame] | 8 | phone_common_dir := ../PhoneCommon |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 9 | |
Yorke Lee | a20df31 | 2015-10-30 12:22:20 -0700 | [diff] [blame] | 10 | ifeq ($(TARGET_BUILD_APPS),) |
| 11 | support_library_root_dir := frameworks/support |
| 12 | else |
| 13 | support_library_root_dir := prebuilts/sdk/current/support |
| 14 | endif |
| 15 | |
Jay Shrauner | 0f68a71 | 2014-07-16 16:13:57 -0700 | [diff] [blame] | 16 | src_dirs := src \ |
| 17 | $(incallui_dir)/src \ |
| 18 | $(contacts_common_dir)/src \ |
| 19 | $(phone_common_dir)/src |
| 20 | |
| 21 | res_dirs := res \ |
| 22 | $(incallui_dir)/res \ |
| 23 | $(contacts_common_dir)/res \ |
Walter Jang | 84ea91d | 2016-07-13 11:51:26 -0700 | [diff] [blame] | 24 | $(contacts_common_dir)/icons/res \ |
Jay Shrauner | 0f68a71 | 2014-07-16 16:13:57 -0700 | [diff] [blame] | 25 | $(phone_common_dir)/res |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 26 | |
Ta-wei Yen | 90a13e9 | 2016-01-11 13:00:53 -0800 | [diff] [blame] | 27 | src_dirs += \ |
Colin Cross | 35eacdd | 2017-01-11 14:55:34 -0800 | [diff] [blame] | 28 | src-N |
Ta-wei Yen | 90a13e9 | 2016-01-11 13:00:53 -0800 | [diff] [blame] | 29 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 30 | LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) |
Zhu Youhua | 8cb34a6 | 2016-07-12 13:29:31 +0800 | [diff] [blame] | 31 | LOCAL_SRC_FILES += src/org/codeaurora/presenceserv/IPresenceService.aidl \ |
| 32 | src/org/codeaurora/presenceserv/IPresenceServiceCB.aidl |
Andrew Lee | f317088 | 2015-04-10 17:28:26 -0700 | [diff] [blame] | 33 | LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) \ |
Yorke Lee | a20df31 | 2015-10-30 12:22:20 -0700 | [diff] [blame] | 34 | $(support_library_root_dir)/v7/cardview/res \ |
| 35 | $(support_library_root_dir)/v7/recyclerview/res \ |
| 36 | $(support_library_root_dir)/v7/appcompat/res \ |
| 37 | $(support_library_root_dir)/design/res |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 38 | |
Suchand Ghosh | d0d53cd | 2014-09-15 10:44:02 +0530 | [diff] [blame] | 39 | LOCAL_JAVA_LIBRARIES := telephony-common \ |
| 40 | telephony-ext \ |
| 41 | ims-common |
Prasath Balakrishnan | 6b81406 | 2016-02-23 19:48:12 +0530 | [diff] [blame] | 42 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 43 | LOCAL_AAPT_FLAGS := \ |
| 44 | --auto-add-overlay \ |
Nancy Chen | 44898ad | 2015-08-13 12:03:47 -0700 | [diff] [blame] | 45 | --extra-packages android.support.v7.appcompat \ |
Andrew Lee | f317088 | 2015-04-10 17:28:26 -0700 | [diff] [blame] | 46 | --extra-packages android.support.v7.cardview \ |
Andrew Lee | a1bb125 | 2015-04-07 11:38:41 -0700 | [diff] [blame] | 47 | --extra-packages android.support.v7.recyclerview \ |
Nancy Chen | 44898ad | 2015-08-13 12:03:47 -0700 | [diff] [blame] | 48 | --extra-packages android.support.design \ |
Sai Cheemalapati | fd723ca | 2014-06-19 12:30:07 -0700 | [diff] [blame] | 49 | --extra-packages com.android.incallui \ |
Jay Shrauner | 0f68a71 | 2014-07-16 16:13:57 -0700 | [diff] [blame] | 50 | --extra-packages com.android.contacts.common \ |
Sai Cheemalapati | fd723ca | 2014-06-19 12:30:07 -0700 | [diff] [blame] | 51 | --extra-packages com.android.phone.common |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 52 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 53 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 54 | android-common \ |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 55 | android-support-v13 \ |
| 56 | android-support-v4 \ |
Nancy Chen | 44898ad | 2015-08-13 12:03:47 -0700 | [diff] [blame] | 57 | android-support-v7-appcompat \ |
Andrew Lee | f317088 | 2015-04-10 17:28:26 -0700 | [diff] [blame] | 58 | android-support-v7-cardview \ |
Andrew Lee | a1bb125 | 2015-04-07 11:38:41 -0700 | [diff] [blame] | 59 | android-support-v7-recyclerview \ |
Nancy Chen | 44898ad | 2015-08-13 12:03:47 -0700 | [diff] [blame] | 60 | android-support-design \ |
Andrew Lee | a1bb125 | 2015-04-07 11:38:41 -0700 | [diff] [blame] | 61 | com.android.vcard \ |
| 62 | guava \ |
Garik Badalyan | d47747e | 2016-05-05 17:30:55 -0700 | [diff] [blame] | 63 | libphonenumber \ |
blong | b445ba4 | 2016-05-30 15:48:42 +0800 | [diff] [blame] | 64 | ims-ext-common \ |
Li Wei | 31974f8 | 2016-05-11 17:12:51 +0800 | [diff] [blame] | 65 | phonebook_wrapper \ |
| 66 | telephony-common |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 67 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 68 | LOCAL_PACKAGE_NAME := Dialer |
| 69 | LOCAL_CERTIFICATE := shared |
Christopher Tate | 5e9d0c4 | 2013-06-18 13:18:16 -0700 | [diff] [blame] | 70 | LOCAL_PRIVILEGED_MODULE := true |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 71 | |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 72 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags $(incallui_dir)/proguard.flags |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 73 | |
Li Wei | 31974f8 | 2016-05-11 17:12:51 +0800 | [diff] [blame] | 74 | # LOCAL_SDK_VERSION := current |
Christine Chen | 641ab5a | 2013-10-23 17:19:42 -0700 | [diff] [blame] | 75 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 76 | include $(BUILD_PACKAGE) |
| 77 | |
Santos Cordon | 472c277 | 2013-03-18 17:43:21 -0700 | [diff] [blame] | 78 | # Use the following include to make our test apk. |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 79 | include $(call all-makefiles-under,$(LOCAL_PATH)) |