Android.mk revision 26de7079b6bbaac1636445ef730c0229bc1add98
1# Copyright (C) 2011 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17############ some local flags
18# If you change any of those flags, you need to rebuild both libjni_latinime_common_static
19# and the shared library that uses libjni_latinime_common_static.
20FLAG_DBG ?= false
21FLAG_DO_PROFILE ?= false
22
23######################################
24include $(CLEAR_VARS)
25
26LATIN_IME_SRC_DIR := src
27
28LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
29
30LOCAL_CFLAGS += -Werror -Wall -Wextra -Weffc++ -Wformat=2 -Wcast-qual -Wcast-align \
31    -Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls -Wno-system-headers
32
33ifeq ($(TARGET_ARCH), arm)
34ifeq ($(TARGET_GCC_VERSION), 4.6)
35LOCAL_CFLAGS += -Winline
36endif # TARGET_GCC_VERSION
37endif # TARGET_ARCH
38
39# To suppress compiler warnings for unused variables/functions used for debug features etc.
40LOCAL_CFLAGS += -Wno-unused-parameter -Wno-unused-function
41
42LATIN_IME_JNI_SRC_FILES := \
43    com_android_inputmethod_keyboard_ProximityInfo.cpp \
44    com_android_inputmethod_latin_BinaryDictionary.cpp \
45    com_android_inputmethod_latin_DicTraverseSession.cpp \
46    jni_common.cpp
47
48LATIN_IME_CORE_SRC_FILES := \
49    suggest/core/suggest.cpp \
50    $(addprefix suggest/core/dicnode/, \
51        dic_node.cpp \
52        dic_node_utils.cpp \
53        dic_nodes_cache.cpp) \
54    $(addprefix suggest/core/dictionary/, \
55        bigram_dictionary.cpp \
56        binary_dictionary_format_utils.cpp \
57        binary_dictionary_header.cpp \
58        binary_dictionary_header_reading_utils.cpp \
59        binary_dictionary_terminal_attributes_reading_utils.cpp \
60        bloom_filter.cpp \
61        byte_array_utils.cpp \
62        dictionary.cpp \
63        digraph_utils.cpp \
64        multi_bigram_map.cpp) \
65    $(addprefix suggest/core/layout/, \
66        additional_proximity_chars.cpp \
67        proximity_info.cpp \
68        proximity_info_params.cpp \
69        proximity_info_state.cpp \
70        proximity_info_state_utils.cpp) \
71    suggest/core/policy/weighting.cpp \
72    suggest/core/session/dic_traverse_session.cpp \
73    $(addprefix suggest/policyimpl/dictionary/, \
74        dynamic_patricia_trie_policy.cpp \
75        patricia_trie_policy.cpp) \
76    suggest/policyimpl/gesture/gesture_suggest_policy_factory.cpp \
77    $(addprefix suggest/policyimpl/typing/, \
78        scoring_params.cpp \
79        typing_scoring.cpp \
80        typing_suggest_policy.cpp \
81        typing_traversal.cpp \
82        typing_weighting.cpp) \
83    $(addprefix utils/, \
84        autocorrection_threshold_utils.cpp \
85        char_utils.cpp \
86        log_utils.cpp)
87
88LOCAL_SRC_FILES := \
89    $(LATIN_IME_JNI_SRC_FILES) \
90    $(addprefix $(LATIN_IME_SRC_DIR)/, $(LATIN_IME_CORE_SRC_FILES))
91
92ifeq ($(FLAG_DO_PROFILE), true)
93    $(warning Making profiling version of native library)
94    LOCAL_CFLAGS += -DFLAG_DO_PROFILE -funwind-tables -fno-inline
95else # FLAG_DO_PROFILE
96ifeq ($(FLAG_DBG), true)
97    $(warning Making debug version of native library)
98    LOCAL_CFLAGS += -DFLAG_DBG -funwind-tables -fno-inline
99ifeq ($(FLAG_FULL_DBG), true)
100    $(warning Making full debug version of native library)
101    LOCAL_CFLAGS += -DFLAG_FULL_DBG
102endif # FLAG_FULL_DBG
103endif # FLAG_DBG
104endif # FLAG_DO_PROFILE
105
106LOCAL_MODULE := libjni_latinime_common_static
107LOCAL_MODULE_TAGS := optional
108
109LOCAL_SDK_VERSION := 14
110LOCAL_NDK_STL_VARIANT := stlport_static
111
112include $(BUILD_STATIC_LIBRARY)
113######################################
114include $(CLEAR_VARS)
115
116# All code in LOCAL_WHOLE_STATIC_LIBRARIES will be built into this shared library.
117LOCAL_WHOLE_STATIC_LIBRARIES := libjni_latinime_common_static
118
119ifeq ($(FLAG_DO_PROFILE), true)
120    $(warning Making profiling version of native library)
121    LOCAL_LDFLAGS += -llog
122else # FLAG_DO_PROFILE
123ifeq ($(FLAG_DBG), true)
124    $(warning Making debug version of native library)
125    LOCAL_LDFLAGS += -llog
126endif # FLAG_DBG
127endif # FLAG_DO_PROFILE
128
129LOCAL_MODULE := libjni_latinime
130LOCAL_MODULE_TAGS := optional
131
132LOCAL_SDK_VERSION := 14
133LOCAL_NDK_STL_VARIANT := stlport_static
134LOCAL_LDFLAGS += -ldl
135
136include $(BUILD_SHARED_LIBRARY)
137
138#################### Clean up the tmp vars
139LATIN_IME_CORE_SRC_FILES :=
140LATIN_IME_JNI_SRC_FILES :=
141LATIN_IME_SRC_DIR :=
142