Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # Build the Phone app which includes the emergency dialer. See Contacts |
| 4 | # for the 'other' dialer. |
| 5 | include $(CLEAR_VARS) |
| 6 | |
Sai Cheemalapati | 14462b6 | 2014-06-18 13:53:56 -0700 | [diff] [blame] | 7 | phone_common_dir := ../../apps/PhoneCommon |
| 8 | |
Sailesh Nepal | 788959e | 2014-07-08 23:36:40 -0700 | [diff] [blame] | 9 | src_dirs := src $(phone_common_dir)/src sip/src |
Eric Erfanian | c712d4b | 2018-01-03 16:36:14 -0800 | [diff] [blame] | 10 | res_dirs := res \ |
| 11 | $(phone_common_dir)/res \ |
| 12 | sip/res \ |
| 13 | src/com/android/phone/assisteddialing/res \ |
| 14 | src/com/android/phone/settings/assisteddialing/res |
Sai Cheemalapati | 14462b6 | 2014-06-18 13:53:56 -0700 | [diff] [blame] | 15 | |
Colin Cross | c64180a | 2017-01-19 14:18:45 -0800 | [diff] [blame] | 16 | LOCAL_JAVA_LIBRARIES := \ |
| 17 | telephony-common \ |
| 18 | voip-common \ |
| 19 | ims-common \ |
| 20 | org.apache.http.legacy |
| 21 | |
Aurimas Liutikas | 9f24ec1 | 2017-12-04 19:01:49 -0800 | [diff] [blame] | 22 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Colin Cross | c64180a | 2017-01-19 14:18:45 -0800 | [diff] [blame] | 23 | android-support-v7-appcompat \ |
| 24 | android-support-v7-preference \ |
| 25 | android-support-v7-recyclerview \ |
Aurimas Liutikas | 9f24ec1 | 2017-12-04 19:01:49 -0800 | [diff] [blame] | 26 | android-support-v14-preference |
| 27 | |
| 28 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Alan Viverette | 34c163a | 2017-05-02 17:18:27 +0000 | [diff] [blame] | 29 | guava \ |
| 30 | volley |
Santos Cordon | f6bb89d | 2013-07-12 14:21:14 -0700 | [diff] [blame] | 31 | |
Sai Cheemalapati | 14462b6 | 2014-06-18 13:53:56 -0700 | [diff] [blame] | 32 | LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 33 | LOCAL_SRC_FILES += \ |
| 34 | src/com/android/phone/EventLogTags.logtags \ |
| 35 | src/com/android/phone/INetworkQueryService.aidl \ |
| 36 | src/com/android/phone/INetworkQueryServiceCallback.aidl |
Sai Cheemalapati | 14462b6 | 2014-06-18 13:53:56 -0700 | [diff] [blame] | 37 | LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) |
Aurimas Liutikas | 9f24ec1 | 2017-12-04 19:01:49 -0800 | [diff] [blame] | 38 | LOCAL_USE_AAPT2 := true |
Fan Zhang | c57b9ee | 2017-07-07 20:57:33 -0700 | [diff] [blame] | 39 | |
Sai Cheemalapati | 14462b6 | 2014-06-18 13:53:56 -0700 | [diff] [blame] | 40 | LOCAL_AAPT_FLAGS := \ |
Sailesh Nepal | 788959e | 2014-07-08 23:36:40 -0700 | [diff] [blame] | 41 | --extra-packages com.android.phone.common \ |
Eric Erfanian | c712d4b | 2018-01-03 16:36:14 -0800 | [diff] [blame] | 42 | --extra-packages com.android.services.telephony.sip \ |
| 43 | --extra-packages com.android.phone.assisteddialing \ |
| 44 | --extra-packages com.android.phone.settings.assisteddialing |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 45 | |
| 46 | LOCAL_PACKAGE_NAME := TeleService |
Santos Cordon | 50a4789 | 2013-07-11 11:09:04 -0700 | [diff] [blame] | 47 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 48 | LOCAL_CERTIFICATE := platform |
| 49 | LOCAL_PRIVILEGED_MODULE := true |
| 50 | |
Sailesh Nepal | 788959e | 2014-07-08 23:36:40 -0700 | [diff] [blame] | 51 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags sip/proguard.flags |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 52 | |
Mahaver Chopra | c738a38 | 2016-02-05 15:46:37 +0000 | [diff] [blame] | 53 | include frameworks/base/packages/SettingsLib/common.mk |
| 54 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 55 | include $(BUILD_PACKAGE) |
| 56 | |
| 57 | # Build the test package |
| 58 | include $(call all-makefiles-under,$(LOCAL_PATH)) |