futokb/native/jni/NativeFileList.mk
2024-04-18 10:29:10 -05:00

216 lines
8.5 KiB
Makefile
Executable File

# Copyright (C) 2013 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
LATIN_IME_JNI_SRC_FILES := \
org_futo_inputmethod_keyboard_ProximityInfo.cpp \
org_futo_inputmethod_latin_BinaryDictionary.cpp \
org_futo_inputmethod_latin_BinaryDictionaryUtils.cpp \
org_futo_inputmethod_latin_DicTraverseSession.cpp \
org_futo_inputmethod_latin_xlm_LanguageModel.cpp \
org_futo_inputmethod_latin_xlm_AdapterTrainer.cpp \
org_futo_inputmethod_latin_xlm_ModelInfoLoader.cpp \
org_futo_voiceinput_WhisperGGML.cpp \
jni_common.cpp
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/sentencepiece/builtin_pb
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/third_party
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/third_party/protobuf-lite
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/third_party/esaxx
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/third_party/darts_clone
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src/third_party/absl
LATIN_IME_CORE_SRC_FILES := \
jni_utils.cpp \
ggml/context.cpp \
ggml/ggml.c \
ggml/ggml-alloc.c \
ggml/ggml-quants.c \
ggml/ggml-backend.c \
ggml/llama.cpp \
ggml/whisper.cpp \
ggml/finetune.cpp \
ggml/train.cpp \
ggml/common.cpp \
ggml/LanguageModel.cpp \
ggml/ModelMeta.cpp \
third_party/protobuf-lite/arena.cc \
third_party/protobuf-lite/arenastring.cc \
third_party/protobuf-lite/bytestream.cc \
third_party/protobuf-lite/coded_stream.cc \
third_party/protobuf-lite/common.cc \
third_party/protobuf-lite/extension_set.cc \
third_party/protobuf-lite/generated_enum_util.cc \
third_party/protobuf-lite/generated_message_table_driven_lite.cc \
third_party/protobuf-lite/generated_message_util.cc \
third_party/protobuf-lite/implicit_weak_message.cc \
third_party/protobuf-lite/int128.cc \
third_party/protobuf-lite/io_win32.cc \
third_party/protobuf-lite/message_lite.cc \
third_party/protobuf-lite/parse_context.cc \
third_party/protobuf-lite/repeated_field.cc \
third_party/protobuf-lite/status.cc \
third_party/protobuf-lite/statusor.cc \
third_party/protobuf-lite/stringpiece.cc \
third_party/protobuf-lite/stringprintf.cc \
third_party/protobuf-lite/structurally_valid.cc \
third_party/protobuf-lite/strutil.cc \
third_party/protobuf-lite/time.cc \
third_party/protobuf-lite/wire_format_lite.cc \
third_party/protobuf-lite/zero_copy_stream.cc \
third_party/protobuf-lite/zero_copy_stream_impl.cc \
third_party/protobuf-lite/zero_copy_stream_impl_lite.cc \
sentencepiece/builtin_pb/sentencepiece_model.pb.cc \
sentencepiece/builtin_pb/sentencepiece.pb.cc \
$(addprefix sentencepiece/, \
bpe_model.cc \
char_model.cc \
error.cc \
filesystem.cc \
model_factory.cc \
model_interface.cc \
normalizer.cc \
sentencepiece_processor.cc \
unigram_model.cc \
util.cc \
word_model.cc) \
$(addprefix dictionary/header/, \
header_policy.cpp \
header_read_write_utils.cpp) \
dictionary/property/ngram_context.cpp \
dictionary/structure/dictionary_structure_with_buffer_policy_factory.cpp \
$(addprefix dictionary/structure/pt_common/, \
bigram/bigram_list_read_write_utils.cpp \
dynamic_pt_gc_event_listeners.cpp \
dynamic_pt_reading_helper.cpp \
dynamic_pt_reading_utils.cpp \
dynamic_pt_updating_helper.cpp \
dynamic_pt_writing_utils.cpp \
patricia_trie_reading_utils.cpp \
shortcut/shortcut_list_reading_utils.cpp) \
$(addprefix dictionary/structure/v2/, \
patricia_trie_policy.cpp \
ver2_patricia_trie_node_reader.cpp \
ver2_pt_node_array_reader.cpp) \
$(addprefix dictionary/structure/v4/, \
ver4_dict_buffers.cpp \
ver4_dict_constants.cpp \
ver4_patricia_trie_node_reader.cpp \
ver4_patricia_trie_node_writer.cpp \
ver4_patricia_trie_policy.cpp \
ver4_patricia_trie_reading_utils.cpp \
ver4_patricia_trie_writing_helper.cpp \
ver4_pt_node_array_reader.cpp) \
$(addprefix dictionary/structure/v4/content/, \
dynamic_language_model_probability_utils.cpp \
language_model_dict_content.cpp \
language_model_dict_content_global_counters.cpp \
shortcut_dict_content.cpp \
sparse_table_dict_content.cpp \
terminal_position_lookup_table.cpp) \
$(addprefix dictionary/utils/, \
buffer_with_extendable_buffer.cpp \
byte_array_utils.cpp \
dict_file_writing_utils.cpp \
file_utils.cpp \
forgetting_curve_utils.cpp \
format_utils.cpp \
mmapped_buffer.cpp \
multi_bigram_map.cpp \
probability_utils.cpp \
sparse_table.cpp \
trie_map.cpp ) \
suggest/core/suggest.cpp \
$(addprefix suggest/core/dicnode/, \
dic_node.cpp \
dic_node_utils.cpp \
dic_nodes_cache.cpp) \
$(addprefix suggest/core/dictionary/, \
dictionary.cpp \
dictionary_utils.cpp \
digraph_utils.cpp \
error_type_utils.cpp ) \
$(addprefix suggest/core/layout/, \
additional_proximity_chars.cpp \
proximity_info.cpp \
proximity_info_params.cpp \
proximity_info_state.cpp \
proximity_info_state_utils.cpp) \
suggest/core/policy/weighting.cpp \
suggest/core/session/dic_traverse_session.cpp \
$(addprefix suggest/core/result/, \
suggestion_results.cpp \
suggestions_output_utils.cpp) \
$(addprefix suggest/policyimpl/gesture/, \
swipe_scoring.cpp \
swipe_suggest_policy.cpp \
swipe_traversal.cpp \
swipe_weighting.cpp \
) \
$(addprefix suggest/policyimpl/typing/, \
scoring_params.cpp \
typing_scoring.cpp \
typing_suggest_policy.cpp \
typing_traversal.cpp \
typing_weighting.cpp) \
$(addprefix utils/, \
autocorrection_threshold_utils.cpp \
char_utils.cpp \
jni_data_utils.cpp \
log_utils.cpp \
time_keeper.cpp)
LATIN_IME_CORE_SRC_FILES_BACKWARD_V402 := \
$(addprefix dictionary/structure/backward/v402/, \
ver4_dict_buffers.cpp \
ver4_dict_constants.cpp \
ver4_patricia_trie_node_reader.cpp \
ver4_patricia_trie_node_writer.cpp \
ver4_patricia_trie_policy.cpp \
ver4_patricia_trie_reading_utils.cpp \
ver4_patricia_trie_writing_helper.cpp \
ver4_pt_node_array_reader.cpp) \
$(addprefix dictionary/structure/backward/v402/content/, \
bigram_dict_content.cpp \
probability_dict_content.cpp \
shortcut_dict_content.cpp \
sparse_table_dict_content.cpp \
terminal_position_lookup_table.cpp) \
$(addprefix dictionary/structure/backward/v402/bigram/, \
ver4_bigram_list_policy.cpp)
LATIN_IME_CORE_SRC_FILES += $(LATIN_IME_CORE_SRC_FILES_BACKWARD_V402)
LATIN_IME_CORE_TEST_FILES := \
defines_test.cpp \
dictionary/header/header_read_write_utils_test.cpp \
dictionary/structure/v4/content/language_model_dict_content_test.cpp \
dictionary/structure/v4/content/language_model_dict_content_global_counters_test.cpp \
dictionary/structure/v4/content/probability_entry_test.cpp \
dictionary/structure/v4/content/terminal_position_lookup_table_test.cpp \
dictionary/utils/bloom_filter_test.cpp \
dictionary/utils/buffer_with_extendable_buffer_test.cpp \
dictionary/utils/byte_array_utils_test.cpp \
dictionary/utils/format_utils_test.cpp \
dictionary/utils/probability_utils_test.cpp \
dictionary/utils/sparse_table_test.cpp \
dictionary/utils/trie_map_test.cpp \
suggest/core/dicnode/dic_node_pool_test.cpp \
suggest/core/layout/geometry_utils_test.cpp \
suggest/core/layout/normal_distribution_2d_test.cpp \
suggest/policyimpl/utils/damerau_levenshtein_edit_distance_policy_test.cpp \
utils/autocorrection_threshold_utils_test.cpp \
utils/char_utils_test.cpp \
utils/int_array_view_test.cpp \
utils/time_keeper_test.cpp