blob: 9a547b054ba06f541c721754a73df3b3eb49fef7 [file] [log] [blame]
Keisuke Kuroyanagie101a532014-10-31 20:27:06 +09001# Copyright (C) 2014 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
15LATIN_IME_DICT_TOOLKIT_MAIN_SRC_FILES := \
16 dict_toolkit_main.cpp
17
Keisuke Kuroyanagi4bfa3b22014-11-07 06:49:34 +090018LATIN_IME_DICT_TOOLKIT_SRC_FILES := \
Keisuke Kuroyanagibd489632014-11-08 05:23:05 +090019 $(addprefix command_executors/, \
20 diff_executor.cpp \
21 header_executor.cpp \
22 help_executor.cpp \
23 info_executor.cpp \
24 makedict_executor.cpp) \
Keisuke Kuroyanagicd105402014-11-10 08:57:07 +090025 $(addprefix offdevice_intermediate_dict/, \
26 offdevice_intermediate_dict.cpp) \
Keisuke Kuroyanagif0c303d2014-11-10 12:10:36 +090027 $(addprefix utils/, \
Keisuke Kuroyanagi79273b02014-11-08 09:52:40 +090028 arguments_parser.cpp \
Keisuke Kuroyanagif0c303d2014-11-10 12:10:36 +090029 command_utils.cpp \
30 utf8_utils.cpp)
Keisuke Kuroyanagie101a532014-10-31 20:27:06 +090031
32LATIN_IME_DICT_TOOLKIT_TEST_FILES := \
Keisuke Kuroyanagi79273b02014-11-08 09:52:40 +090033 $(addprefix command_executors/, \
34 diff_executor_test.cpp \
35 header_executor_test.cpp \
36 info_executor_test.cpp \
37 makedict_executor_test.cpp) \
Keisuke Kuroyanagi4bfa3b22014-11-07 06:49:34 +090038 dict_toolkit_defines_test.cpp \
Keisuke Kuroyanagicd105402014-11-10 08:57:07 +090039 $(addprefix offdevice_intermediate_dict/, \
40 offdevice_intermediate_dict_test.cpp) \
41 $(addprefix utils/, \
Keisuke Kuroyanagi681dbc22014-11-08 13:49:51 +090042 arguments_parser_test.cpp \
Keisuke Kuroyanagif0c303d2014-11-10 12:10:36 +090043 command_utils_test.cpp \
44 utf8_utils_test.cpp)