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) 9 10LOCAL_PACKAGE_NAME := Telecom 11 12LOCAL_CERTIFICATE := platform 13LOCAL_PRIVILEGED_MODULE := true 14 15LOCAL_PROGUARD_FLAG_FILES := proguard.flags 16 17include $(BUILD_PACKAGE) 18 19# Build the test package. 20include $(call all-makefiles-under,$(LOCAL_PATH)) 21