1dea9bdc1a
IA builds will break (due to the bionic _dso_handle bug) if stale libraries are used. For now, just guard the defns against IA builds. Change-Id: Ic9df6e0de78a0e221b95370ba6f01ce07714edde Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
20 lines
385 B
Makefile
20 lines
385 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
|
|
|
|
LOCAL_SRC_FILES := \
|
|
jni/com_android_inputmethod_latin_BinaryDictionary.cpp \
|
|
src/dictionary.cpp \
|
|
src/char_utils.cpp
|
|
|
|
ifneq ($(TARGET_ARCH),x86)
|
|
LOCAL_NDK_VERSION := 4
|
|
LOCAL_SDK_VERSION := 8
|
|
endif
|
|
|
|
LOCAL_MODULE := libjni_latinime
|
|
|
|
LOCAL_MODULE_TAGS := user
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|