debd74c678
- Rename the jni library name - Revert the local cert - LatinIme2Google -> LatinIME Please note that we'll use the new package name: com.google.android.inputmethod.latin Change-Id: Ibbab07e8102ade5a93660c0723cd86f600c14a7d
23 lines
473 B
Makefile
23 lines
473 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
|
|
|
|
# NDK does not support sim build.
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_NDK_VERSION := 4
|
|
LOCAL_SDK_VERSION := 8
|
|
else
|
|
LOCAL_C_INCLUDES += $(JNI_H_INCLUDE)
|
|
endif
|
|
|
|
LOCAL_MODULE := libjni_latinime
|
|
|
|
LOCAL_MODULE_TAGS := user
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|