File tree Expand file tree Collapse file tree 8 files changed +11
-32
lines changed Expand file tree Collapse file tree 8 files changed +11
-32
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ if (NOT DEFINED MOZC_TARGET)
37
37
include (cmake/session.cmake )
38
38
include (cmake/storage.cmake )
39
39
include (cmake/transliteration.cmake )
40
- include (cmake/usage_stats.cmake )
41
40
42
41
include (cmake/mozc-static.cmake )
43
42
set (MOZC_TARGET
@@ -53,7 +52,6 @@ if (NOT DEFINED MOZC_TARGET)
53
52
gen_config_file_stream_data
54
53
gen_pos_matcher_code
55
54
gen_pos_matcher_impl_inc
56
- gen_stats_list
57
55
gen_version_def
58
56
)
59
57
endif ()
Original file line number Diff line number Diff line change 1
1
set (MOZC_CONVERTER_SRCS
2
+ candidate.cc
2
3
candidate_filter.cc
3
4
connector.cc
4
5
converter.cc
@@ -7,7 +8,6 @@ set(MOZC_CONVERTER_SRCS
7
8
key_corrector.cc
8
9
lattice.cc
9
10
nbest_generator.cc
10
- node_list_builder.cc
11
11
reverse_converter.cc
12
12
segmenter.cc
13
13
segments.cc
Original file line number Diff line number Diff line change 1
1
set (MOZC_ENGINE_SRCS
2
+ candidate_list.cc
2
3
data_loader.cc
3
4
engine.cc
5
+ engine_converter.cc
6
+ engine_output.cc
4
7
minimal_converter.cc
5
8
modules.cc
6
9
)
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ target_compile_options(mozc-static PRIVATE -funsigned-char)
27
27
28
28
target_compile_definitions (mozc-static PRIVATE
29
29
-DMOZC_DATASET_MAGIC_NUMBER_LENGTH=7
30
+ )
31
+
32
+ # fcitx5-mozc references session_handler.h.
33
+ target_compile_definitions (mozc-static PUBLIC
30
34
-DMOZC_DISABLE_SESSION_WATCHDOG
31
35
)
32
36
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ set(PROTO_SRCS
20
20
protocol/segmenter_data
21
21
protocol/state
22
22
protocol/user_dictionary_storage
23
- usage_stats/usage_stats
24
23
)
25
24
list (TRANSFORM PROTO_SRCS APPEND ".pb.cc" OUTPUT_VARIABLE GENERATED_PROTO_SRCS )
26
25
list (TRANSFORM GENERATED_PROTO_SRCS PREPEND "${PROJECT_BINARY_DIR} /" )
Original file line number Diff line number Diff line change 1
1
set (MOZC_SESSION_SRCS
2
- internal /candidate_list.cc
3
- internal /ime_context.cc
4
- internal /key_event_transformer.cc
5
- internal /keymap.cc
6
- internal /session_output.cc
2
+ ime_context.cc
3
+ key_event_transformer.cc
4
+ keymap.cc
7
5
key_info_util.cc
8
6
session.cc
9
- session_converter.cc
10
7
session_handler.cc
11
- session_observer_handler.cc
12
- session_usage_observer.cc
13
- session_usage_stats_util.cc
14
8
)
15
9
list (TRANSFORM MOZC_SESSION_SRCS PREPEND "${MOZC_SRC_DIR} /session/" )
Original file line number Diff line number Diff line change @@ -6,7 +6,5 @@ set(MOZC_STORAGE_SRCS
6
6
louds/louds_trie.cc
7
7
louds/simple_succinct_bit_vector_index.cc
8
8
lru_storage.cc
9
- registry.cc
10
- tiny_storage.cc
11
9
)
12
10
list (TRANSFORM MOZC_STORAGE_SRCS PREPEND "${MOZC_SRC_DIR} /storage/" )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments