2013-12-12 20:05:37 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
2014-09-13 05:17:27 +00:00
|
|
|
# Build the Telecom service.
|
2013-12-12 20:05:37 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2014-06-10 20:47:44 +00:00
|
|
|
LOCAL_JAVA_LIBRARIES := telephony-common
|
2013-12-12 20:05:37 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
|
2014-09-13 05:17:27 +00:00
|
|
|
LOCAL_PACKAGE_NAME := Telecom
|
2013-12-12 20:05:37 +00:00
|
|
|
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
|
2014-10-23 01:17:35 +00:00
|
|
|
LOCAL_PROGUARD_FLAGS := $(proguard.flags)
|
2014-01-13 15:37:31 +00:00
|
|
|
|
2014-03-19 01:15:46 +00:00
|
|
|
# Workaround for "local variable type mismatch" error.
|
|
|
|
LOCAL_DX_FLAGS += --no-locals
|
|
|
|
|
2013-12-12 20:05:37 +00:00
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
|
|
|
# Build the test package.
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|