The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/src |
| 5 | |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | jni/com_android_inputmethod_latin_BinaryDictionary.cpp \ |
Ken Wakasa | 707505e | 2010-04-21 02:35:47 +0900 | [diff] [blame] | 8 | src/dictionary.cpp \ |
| 9 | src/char_utils.cpp |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 10 | |
Ying Wang | 30ce6f0 | 2010-07-16 11:36:20 -0700 | [diff] [blame] | 11 | # NDK does not support sim build. |
| 12 | ifneq ($(TARGET_SIMULATOR),true) |
| 13 | LOCAL_NDK_VERSION := 4 |
| 14 | LOCAL_SDK_VERSION := 8 |
| 15 | else |
| 16 | LOCAL_C_INCLUDES += $(JNI_H_INCLUDE) |
| 17 | endif |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 18 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 19 | LOCAL_MODULE := libjni_latinime |
| 20 | |
| 21 | LOCAL_MODULE_TAGS := user |
| 22 | |
| 23 | include $(BUILD_SHARED_LIBRARY) |