| Index: build/common.gypi
|
| diff --git a/build/common.gypi b/build/common.gypi
|
| index eb86b3e3f71a3e7c60e1f2c8006c9dafa4776112..2825cbe651897d0998bcb1558c07a707820ef182 100644
|
| --- a/build/common.gypi
|
| +++ b/build/common.gypi
|
| @@ -424,6 +424,11 @@
|
| # 2: Use only CLD2.
|
| 'cld_version%': 2,
|
|
|
| + # Set the way CLD is compiled
|
| + # 0: static, language scoring tables compiled into the binary
|
| + # 1: dynamic, language scoring tables live in a data file that must be loaded at runtime
|
| + 'cld_dynamic%': 0,
|
| +
|
| # Enable spell checker.
|
| 'enable_spellcheck%': 1,
|
|
|
| @@ -618,6 +623,7 @@
|
| 'enable_extensions%': 0,
|
| 'enable_google_now%': 0,
|
| 'cld_version%': 1,
|
| + 'cld_dynamic%': 0,
|
| 'enable_spellcheck%': 0,
|
| 'enable_themes%': 0,
|
| 'remoting%': 0,
|
| @@ -668,6 +674,7 @@
|
| 'enable_extensions%': 0,
|
| 'enable_google_now%': 0,
|
| 'cld_version%': 1,
|
| + 'cld_dynamic%': 0,
|
| 'enable_printing%': 0,
|
| 'enable_session_service%': 0,
|
| 'enable_themes%': 0,
|
| @@ -978,6 +985,7 @@
|
| 'enable_spellcheck%': '<(enable_spellcheck)',
|
| 'enable_google_now%': '<(enable_google_now)',
|
| 'cld_version%': '<(cld_version)',
|
| + 'cld_dynamic%': '<(cld_dynamic)',
|
| 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
|
| 'disable_ftp_support%': '<(disable_ftp_support)',
|
| 'enable_task_manager%': '<(enable_task_manager)',
|
| @@ -2466,6 +2474,9 @@
|
| ['cld_version!=0', {
|
| 'defines': ['CLD_VERSION=<(cld_version)'],
|
| }],
|
| + ['cld_dynamic!=0', {
|
| + 'defines': ['CLD2_DYNAMIC_MODE=1'],
|
| + }],
|
| ['enable_printing==1', {
|
| 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'],
|
| }],
|
|
|