/native/frameworks/espeakengine/jni/Android.mk
Makefile | 52 lines | 42 code | 10 blank | 0 comment | 0 complexity | f9a1de804e91a266ddab165fb3082c52 MD5 | raw file
1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES:= \ 5 com_google_espeakengine.cpp 6 7LOCAL_C_INCLUDES += \ 8 $(JNI_H_INCLUDE) \ 9 $(LOCAL_PATH)/android/graphics \ 10 $(call include-path-for, corecg graphics) \ 11 $(call include-path-for, libhardware)/hardware \ 12 $(LOCAL_PATH)/../../include/ui \ 13 $(LOCAL_PATH)/../../include/utils \ 14 external/espeak/src \ 15 16LOCAL_STATIC_LIBRARIES := \ 17 libespeak 18 19LOCAL_SHARED_LIBRARIES := \ 20 libandroid_runtime \ 21 libnativehelper \ 22 libmedia \ 23 libutils \ 24 libcutils 25 26XLOCAL_SHARED_LIBRARIES := \ 27 libexpat \ 28 libnetutils \ 29 libui \ 30 libsgl \ 31 libcorecg \ 32 libsqlite \ 33 libdvm \ 34 libGLES_CM \ 35 libhardware \ 36 libsonivox \ 37 libcrypto \ 38 libssl \ 39 libicuuc \ 40 libicui18n \ 41 libicudata \ 42 libwpa_client 43 44LOCAL_MODULE:= libespeakengine 45 46LOCAL_ARM_MODE := arm 47 48LOCAL_PRELINK_MODULE := false 49 50include $(BUILD_SHARED_LIBRARY) 51 52include $(call all-makefiles-under,$(LOCAL_PATH))