Codebase list mozc / bdd90d4
Rename 'mozc.imy' to 'mozc.data' We decided to use *.imy as a hack because that was the only way to teach Eclipse (to be precise Android SDK plugin for Eclipse) that those files must not be compressed. However, we no longer use Eclipse for Android development. There is no reason to keep using such an obscure file extension. BUG= TEST= REF_BUG=14981159 REF_CL=125540611,127055505,130420025 REF_TIME=2016-06-22T17:07:55+09:00 REF_TIME_RAW=1466582875 +0900 Noriyuki Takahashi 7 years ago
6 changed file(s) with 8 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
7474 # and Fedora (jsr-305.jar).
7575 # TODO(yukawa): We should not rely on "find" command here.
7676 'jsr305_jar_path': '<!(find /usr/share/java -name "jsr305.jar" -o -name "jsr-305.jar")',
77 'mozc_dataset': '<(shared_intermediate_mozc_dir)/data_manager/oss/mozc.imy',
77 'mozc_dataset': '<(shared_intermediate_mozc_dir)/data_manager/oss/mozc.data',
7878 'connection_text_data': '<(shared_intermediate_mozc_dir)/data_manager/oss/connection_single_column.txt',
7979 'native_test_small_targets': [
8080 'oss_data_manager_test',
147147 }],
148148 ['branding=="Mozc"', {
149149 'nacl_mozc_files': [
150 '<(gen_out_dir)/nacl_mozc/mozc.imy',
150 '<(gen_out_dir)/nacl_mozc/mozc.data',
151151 ],
152152 }],
153153 ],
419419 }],
420420 ['branding=="Mozc"', {
421421 'files': [
422 '<(SHARED_INTERMEDIATE_DIR)/data_manager/oss/mozc.imy',
422 '<(SHARED_INTERMEDIATE_DIR)/data_manager/oss/mozc.data',
423423 ],
424424 }],
425425 ],
335335 #ifdef GOOGLE_JAPANESE_INPUT_BUILD
336336 const string data_file_name = "./zipped_data_chromeos";
337337 #else // GOOGLE_JAPANESE_INPUT_BUILD
338 const string data_file_name = "./mozc.imy";
338 const string data_file_name = "./mozc.data";
339339 #endif // GOOGLE_JAPANESE_INPUT_BUILD
340340 string file_content;
341341 CHECK(HTTPClient::Get(data_file_name, option, &file_content))
00 MAJOR=2
11 MINOR=18
2 BUILD=2575
2 BUILD=2576
33 REVISION=102
44 # CAUTION: NACL_DICTIONARY_VERSION is going to be migrated to ENGINE_VERSION.
55 # NACL_DICTIONARY_VERSION is the target version of the system dictionary to be
3636 namespace {
3737
3838 // kOssMozcDataSet is embedded.
39 #include "data_manager/oss/mozc_imy.h"
39 #include "data_manager/oss/mozc_data.h"
4040
4141 #ifndef MOZC_DATASET_MAGIC_NUMBER
4242 #error "MOZC_DATASET_MAGIC_NUMBER is not defined by build system"
5555 # Hex-escaped string of "\xEFMOZC\r\n"
5656 'magic_number': "\\xEF\\x4D\\x4F\\x5A\\x43\\x0D\\x0A",
5757 'mozc_data_varname': 'kOssMozcDataSet',
58 'out_mozc_data': 'mozc.imy',
59 'out_mozc_data_header': 'mozc_imy.h',
58 'out_mozc_data': 'mozc.data',
59 'out_mozc_data_header': 'mozc_data.h',
6060 },
6161 # This 'includes' defines the following targets:
6262 # - oss_data_manager (type: static_library)