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 7 LOCAL_JAVA_LIBRARIES := telephony-common voip-common 8 LOCAL_STATIC_JAVA_LIBRARIES := com.android.phone.shared 9 LOCAL_SRC_FILES := $(call all-java-files-under, src) 10 LOCAL_SRC_FILES += \ 11 src/com/android/phone/EventLogTags.logtags \ 12 src/com/android/phone/INetworkQueryService.aidl \ 13 src/com/android/phone/INetworkQueryServiceCallback.aidl 14 15 LOCAL_PACKAGE_NAME := Phone 16 LOCAL_CERTIFICATE := platform 17 18 LOCAL_PROGUARD_FLAG_FILES := proguard.flags 19 20 include $(BUILD_PACKAGE) 21 22 # Build the test package 23 include $(call all-makefiles-under,$(LOCAL_PATH)) 24