mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
458249e703
This change is a preparation for upcoming optimizations on dictionary file loading. * We can consolidate dictionary files because we are no longer relying on Asset Manager. * Stopping compressing dictionary files as planning to use mmap() on the region in the apk file. * Probably we won't rely on Asset Manager. Instead we'll probably use offset and size obtained from AssetFileDescriptor. Change-Id: Id57dce512fd3d2397a58628f8264bd824194da76
41 lines
829 B
Makefile
41 lines
829 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/bigram_dictionary.cpp \
|
|
src/char_utils.cpp \
|
|
src/dictionary.cpp \
|
|
src/unigram_dictionary.cpp
|
|
|
|
#FLAG_DBG := true
|
|
|
|
TARGETING_UNBUNDLED_FROYO := true
|
|
|
|
ifeq ($(TARGET_ARCH), x86)
|
|
TARGETING_UNBUNDLED_FROYO := false
|
|
endif
|
|
|
|
ifeq ($(FLAG_DBG), true)
|
|
TARGETING_UNBUNDLED_FROYO := false
|
|
endif
|
|
|
|
ifeq ($(TARGETING_UNBUNDLED_FROYO), true)
|
|
LOCAL_NDK_VERSION := 4
|
|
LOCAL_SDK_VERSION := 8
|
|
endif
|
|
|
|
LOCAL_MODULE := libjni_latinime
|
|
|
|
LOCAL_MODULE_TAGS := user
|
|
|
|
ifeq ($(FLAG_DBG), true)
|
|
$(warning "Making debug build.")
|
|
LOCAL_CFLAGS += -DFLAG_DBG
|
|
LOCAL_SHARED_LIBRARIES := libcutils libutils
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|