1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/src/org 6LOCAL_SRC_FILES := $(call all-java-files-under, src/org) \ 7 $(call all-Iaidl-files-under, src/org) \ 8 $(call all-logtags-files-under, src/org) 9 10LOCAL_MODULE_TAGS := optional 11LOCAL_MODULE := telephony-ext 12LOCAL_MODULE_OWNER := qti 13 14include $(BUILD_JAVA_LIBRARY) 15 16# Include subdirectory makefiles 17# ============================================================ 18include $(call all-makefiles-under,$(LOCAL_PATH)) 19