Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 605 | 605 |
| 606 # Enables used resource whitelist generation; disabled by default. | 606 # Enables used resource whitelist generation; disabled by default. |
| 607 'enable_resource_whitelist_generation%': 0, | 607 'enable_resource_whitelist_generation%': 0, |
| 608 | 608 |
| 609 # Enable FILE support by default. | 609 # Enable FILE support by default. |
| 610 'disable_file_support%': 0, | 610 'disable_file_support%': 0, |
| 611 | 611 |
| 612 # Enable FTP support by default. | 612 # Enable FTP support by default. |
| 613 'disable_ftp_support%': 0, | 613 'disable_ftp_support%': 0, |
| 614 | 614 |
| 615 # Use full third-party ICU implementation by default. | |
| 616 'use_icu_alternatives%': 0, | |
|
xunjieli
2016/03/31 13:59:40
the "third-party ICU implementation" is a little b
kapishnikov
2016/03/31 16:25:52
Done. Renamed to use_platform_icu_alternatives.
| |
| 617 | |
| 615 # Use of precompiled headers on Windows. | 618 # Use of precompiled headers on Windows. |
| 616 # | 619 # |
| 617 # This variable may be explicitly set to 1 (enabled) or 0 | 620 # This variable may be explicitly set to 1 (enabled) or 0 |
| 618 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. | 621 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. |
| 619 # This setting will override the default. | 622 # This setting will override the default. |
| 620 # | 623 # |
| 621 # See | 624 # See |
| 622 # https://chromium.googlesource.com/chromium/src/+/master/docs/windows_pre compiled_headers.md | 625 # https://chromium.googlesource.com/chromium/src/+/master/docs/windows_pre compiled_headers.md |
| 623 # for details. | 626 # for details. |
| 624 'chromium_win_pch%': 0, | 627 'chromium_win_pch%': 0, |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1262 'test_isolation_mode%': '<(test_isolation_mode)', | 1265 'test_isolation_mode%': '<(test_isolation_mode)', |
| 1263 'enable_basic_printing%': '<(enable_basic_printing)', | 1266 'enable_basic_printing%': '<(enable_basic_printing)', |
| 1264 'enable_print_preview%': '<(enable_print_preview)', | 1267 'enable_print_preview%': '<(enable_print_preview)', |
| 1265 'enable_spellcheck%': '<(enable_spellcheck)', | 1268 'enable_spellcheck%': '<(enable_spellcheck)', |
| 1266 'use_browser_spellchecker%': '<(use_browser_spellchecker)', | 1269 'use_browser_spellchecker%': '<(use_browser_spellchecker)', |
| 1267 'cld_version%': '<(cld_version)', | 1270 'cld_version%': '<(cld_version)', |
| 1268 'cld2_table_size%': '<(cld2_table_size)', | 1271 'cld2_table_size%': '<(cld2_table_size)', |
| 1269 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', | 1272 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', |
| 1270 'disable_file_support%': '<(disable_file_support)', | 1273 'disable_file_support%': '<(disable_file_support)', |
| 1271 'disable_ftp_support%': '<(disable_ftp_support)', | 1274 'disable_ftp_support%': '<(disable_ftp_support)', |
| 1275 'use_icu_alternatives%': '<(use_icu_alternatives)', | |
| 1272 'enable_task_manager%': '<(enable_task_manager)', | 1276 'enable_task_manager%': '<(enable_task_manager)', |
| 1273 'sas_dll_path%': '<(sas_dll_path)', | 1277 'sas_dll_path%': '<(sas_dll_path)', |
| 1274 'wix_path%': '<(wix_path)', | 1278 'wix_path%': '<(wix_path)', |
| 1275 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', | 1279 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', |
| 1276 'use_system_libjpeg%': '<(use_system_libjpeg)', | 1280 'use_system_libjpeg%': '<(use_system_libjpeg)', |
| 1277 'android_channel%': '<(android_channel)', | 1281 'android_channel%': '<(android_channel)', |
| 1278 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', | 1282 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', |
| 1279 'gyp_managed_install%': 0, | 1283 'gyp_managed_install%': 0, |
| 1280 'create_standalone_apk%': 1, | 1284 'create_standalone_apk%': 1, |
| 1281 'enable_app_list%': '<(enable_app_list)', | 1285 'enable_app_list%': '<(enable_app_list)', |
| (...skipping 5099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 6381 # settings in target dicts. SYMROOT is a special case, because many other | 6385 # settings in target dicts. SYMROOT is a special case, because many other |
| 6382 # Xcode variables depend on it, including variables such as | 6386 # Xcode variables depend on it, including variables such as |
| 6383 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6387 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6384 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6388 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6385 # files to appear (when present) in the UI as actual files and not red | 6389 # files to appear (when present) in the UI as actual files and not red |
| 6386 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6390 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6387 # and therefore SYMROOT, needs to be set at the project level. | 6391 # and therefore SYMROOT, needs to be set at the project level. |
| 6388 'SYMROOT': '<(DEPTH)/xcodebuild', | 6392 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6389 }, | 6393 }, |
| 6390 } | 6394 } |
| OLD | NEW |