1LOCAL_PATH:= $(call my-dir) 2 3# Build the Telecom service. 4include $(CLEAR_VARS) 5 6LOCAL_JAVA_LIBRARIES := telephony-common 7 8LOCAL_SRC_FILES := $(call all-java-files-under, src) 9LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 10 11LOCAL_PACKAGE_NAME := Telecom 12 13LOCAL_CERTIFICATE := platform 14LOCAL_PRIVILEGED_MODULE := true 15 16LOCAL_PROGUARD_FLAG_FILES := proguard.flags 17 18include frameworks/base/packages/SettingsLib/common.mk 19 20include $(BUILD_PACKAGE) 21 22# Build the test package. 23include $(call all-makefiles-under,$(LOCAL_PATH)) 24