OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
| 5 # Note to maintainers: In the January 2014 release (*_0122*), there are some |
| 6 # options for building: |
| 7 # Pick one quadgram file (cld2_generated_quadchrome*.cc): |
| 8 # 0122_16 = 160K entries, smallest size, lowest accuracy |
| 9 # 0122_19 = 192K entries, medium size, medium accuracy |
| 10 # 0122_2 = 256K entries, largest size, highest accuracy |
| 11 # |
| 12 # For the CJK bigram file (cld_generated_cjk_delta_bi*.cc), always use |
| 13 # cld_generated_cjk_delta_bi_4.cc, as this is intended for use with Chromium. |
| 14 # The _32 variant of the file is intended for applications that use the full |
| 15 # 175-language version of CLD2. |
| 16 |
5 { | 17 { |
6 'targets': [ | 18 'targets': [ |
7 { | 19 { |
8 'target_name': 'cld_2', | 20 'target_name': 'cld_2', |
9 'type': 'static_library', | 21 'type': 'static_library', |
10 'include_dirs': [ | 22 'include_dirs': [ |
11 'src/internal', | 23 'src/internal', |
12 'src/public', | 24 'src/public', |
13 ], | 25 ], |
14 'sources': [ | 26 'sources': [ |
15 'src/internal/cld2_generated_cjk_compatible.cc', | 27 'src/internal/cld2_generated_cjk_compatible.cc', |
16 'src/internal/cld2_generated_deltaoctachrome0614.cc', | 28 'src/internal/cld2_generated_deltaoctachrome0122.cc', |
17 'src/internal/cld2_generated_distinctoctachrome0604.cc', | 29 'src/internal/cld2_generated_distinctoctachrome0122.cc', |
18 'src/internal/cld2_generated_quadchrome0715.cc', | 30 'src/internal/cld2_generated_quadchrome0122_2.cc', |
19 'src/internal/cld2tablesummary.h', | 31 'src/internal/cld2tablesummary.h', |
20 'src/internal/cld_generated_cjk_delta_bi_4.cc', | 32 'src/internal/cld_generated_cjk_delta_bi_4.cc', |
21 'src/internal/cld_generated_cjk_uni_prop_80.cc', | 33 'src/internal/cld_generated_cjk_uni_prop_80.cc', |
22 'src/internal/cld_generated_score_quad_octa_1024_256.cc', | 34 'src/internal/cld_generated_score_quad_octa_0122_2.cc', |
23 'src/internal/cldutil.cc', | 35 'src/internal/cldutil.cc', |
24 'src/internal/cldutil.h', | 36 'src/internal/cldutil.h', |
25 'src/internal/cldutil_shared.cc', | 37 'src/internal/cldutil_shared.cc', |
26 'src/internal/cldutil_shared.h', | 38 'src/internal/cldutil_shared.h', |
27 'src/internal/compact_lang_det.cc', | 39 'src/internal/compact_lang_det.cc', |
28 'src/internal/compact_lang_det_hint_code.cc', | 40 'src/internal/compact_lang_det_hint_code.cc', |
29 'src/internal/compact_lang_det_hint_code.h', | 41 'src/internal/compact_lang_det_hint_code.h', |
30 'src/internal/compact_lang_det_impl.cc', | 42 'src/internal/compact_lang_det_impl.cc', |
31 'src/internal/compact_lang_det_impl.h', | 43 'src/internal/compact_lang_det_impl.h', |
32 'src/internal/debug.h', | 44 'src/internal/debug.h', |
(...skipping 29 matching lines...) Expand all Loading... |
62 'src/public/encodings.h', | 74 'src/public/encodings.h', |
63 ], | 75 ], |
64 'conditions': [ | 76 'conditions': [ |
65 ['OS=="win"', { | 77 ['OS=="win"', { |
66 'msvs_disabled_warnings': [4267], | 78 'msvs_disabled_warnings': [4267], |
67 }], | 79 }], |
68 ], | 80 ], |
69 }, | 81 }, |
70 ], | 82 ], |
71 } | 83 } |
OLD | NEW |