1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/src/org 6 LOCAL_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 10 LOCAL_MODULE_TAGS := optional 11 LOCAL_MODULE := telephony-ext 12 LOCAL_MODULE_OWNER := qti 13 14 include $(BUILD_JAVA_LIBRARY) 15 16 # Include subdirectory makefiles 17 # ============================================================ 18 include $(call all-makefiles-under,$(LOCAL_PATH)) 19