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