diff options
author | Joe Onorato <joeo@google.com> | 2012-07-11 19:50:59 -0700 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2012-07-21 15:28:59 -0700 |
commit | 28e5bccf28fe8b3a742ad46bdadf50a066ff8393 (patch) | |
tree | 742c0d9fc227586e346f55380cfe50f4903882ec /pico/tts | |
parent | 810f197c50815f6b1acbbc64f4bb5ad31db9c3db (diff) | |
download | external_svox-28e5bccf28fe8b3a742ad46bdadf50a066ff8393.zip external_svox-28e5bccf28fe8b3a742ad46bdadf50a066ff8393.tar.gz external_svox-28e5bccf28fe8b3a742ad46bdadf50a066ff8393.tar.bz2 |
use LOCAL_PATH properly
Change-Id: I5a177116b976be159042cab51c297861f275daa2
Diffstat (limited to 'pico/tts')
-rw-r--r-- | pico/tts/Android.mk | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/pico/tts/Android.mk b/pico/tts/Android.mk new file mode 100644 index 0000000..b492021 --- /dev/null +++ b/pico/tts/Android.mk @@ -0,0 +1,54 @@ +LOCAL_PATH := $(call my-dir) + +# Build static library containing all PICO code +# excluding the compatibility code. This is identical +# to the rule below / except that it builds a shared +# library. +include $(CLEAR_VARS) + +LOCAL_MODULE := libttspico_engine + +LOCAL_SRC_FILES := \ + com_svox_picottsengine.cpp \ + svox_ssml_parser.cpp + +LOCAL_C_INCLUDES += \ + external/svox/pico/lib \ + external/svox/pico/compat/include + +LOCAL_STATIC_LIBRARIES := libsvoxpico + +LOCAL_SHARED_LIBRARIES := \ + libcutils \ + libexpat \ + libutils + +LOCAL_ARM_MODE := arm + +include $(BUILD_STATIC_LIBRARY) + + +# Build Pico Shared Library. This rule is used by the +# compatibility code, which opens this shared library +# using dlsym. This is essentially the same as the rule +# above, except that it packages things a shared library. +include $(CLEAR_VARS) + +LOCAL_MODULE := libttspico + +LOCAL_SRC_FILES := \ + com_svox_picottsengine.cpp \ + svox_ssml_parser.cpp + +LOCAL_C_INCLUDES += \ + external/svox/pico/lib \ + external/svox/pico/compat/include + +LOCAL_STATIC_LIBRARIES := libsvoxpico +LOCAL_SHARED_LIBRARIES := libcutils libexpat libutils + +include $(BUILD_SHARED_LIBRARY) + + + + |