Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: build/common.gypi

Issue 257673002: Make it possible to build url/ without ICU on android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix GN/GYP Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 476
477 # Enable the task manager by default. 477 # Enable the task manager by default.
478 'enable_task_manager%': 1, 478 'enable_task_manager%': 1,
479 479
480 # Enables used resource whitelist generation; disabled by default. 480 # Enables used resource whitelist generation; disabled by default.
481 'enable_resource_whitelist_generation%': 0, 481 'enable_resource_whitelist_generation%': 0,
482 482
483 # Enable FTP support by default. 483 # Enable FTP support by default.
484 'disable_ftp_support%': 0, 484 'disable_ftp_support%': 0,
485 485
486 # Use platform functions in place of ICU. Not supported by most
487 # components.
488 'use_icu_alternatives%': 0,
mef 2014/05/01 19:45:15 so, the cronet build bot would have to set it to 1
mmenke 2014/05/01 21:01:33 Yes.
489
486 # XInput2 multitouch support is enabled by default (use_xi2_mt=2). 490 # XInput2 multitouch support is enabled by default (use_xi2_mt=2).
487 # Setting to zero value disables XI2 MT. When XI2 MT is enabled, 491 # Setting to zero value disables XI2 MT. When XI2 MT is enabled,
488 # the input value also defines the required XI2 minor minimum version. 492 # the input value also defines the required XI2 minor minimum version.
489 # For example, use_xi2_mt=2 means XI2.2 or above version is required. 493 # For example, use_xi2_mt=2 means XI2.2 or above version is required.
490 'use_xi2_mt%': 2, 494 'use_xi2_mt%': 2,
491 495
492 # Use of precompiled headers on Windows. 496 # Use of precompiled headers on Windows.
493 # 497 #
494 # This variable may be explicitly set to 1 (enabled) or 0 498 # This variable may be explicitly set to 1 (enabled) or 0
495 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. 499 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
1020 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)', 1024 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)',
1021 'enable_printing%': '<(enable_printing)', 1025 'enable_printing%': '<(enable_printing)',
1022 'enable_spellcheck%': '<(enable_spellcheck)', 1026 'enable_spellcheck%': '<(enable_spellcheck)',
1023 'enable_google_now%': '<(enable_google_now)', 1027 'enable_google_now%': '<(enable_google_now)',
1024 'cld_version%': '<(cld_version)', 1028 'cld_version%': '<(cld_version)',
1025 'cld2_table_size%': '<(cld2_table_size)', 1029 'cld2_table_size%': '<(cld2_table_size)',
1026 'cld2_dynamic%': '<(cld2_dynamic)', 1030 'cld2_dynamic%': '<(cld2_dynamic)',
1027 'cld2_is_component%': '<(cld2_is_component)', 1031 'cld2_is_component%': '<(cld2_is_component)',
1028 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1032 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1029 'disable_ftp_support%': '<(disable_ftp_support)', 1033 'disable_ftp_support%': '<(disable_ftp_support)',
1034 'use_icu_alternatives%': '<(use_icu_alternatives)',
1030 'enable_task_manager%': '<(enable_task_manager)', 1035 'enable_task_manager%': '<(enable_task_manager)',
1031 'sas_dll_path%': '<(sas_dll_path)', 1036 'sas_dll_path%': '<(sas_dll_path)',
1032 'wix_path%': '<(wix_path)', 1037 'wix_path%': '<(wix_path)',
1033 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1038 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1034 'use_system_libjpeg%': '<(use_system_libjpeg)', 1039 'use_system_libjpeg%': '<(use_system_libjpeg)',
1035 'android_webview_build%': '<(android_webview_build)', 1040 'android_webview_build%': '<(android_webview_build)',
1036 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1041 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1037 'gyp_managed_install%': 0, 1042 'gyp_managed_install%': 0,
1038 'create_standalone_apk%': 1, 1043 'create_standalone_apk%': 1,
1039 'enable_app_list%': '<(enable_app_list)', 1044 'enable_app_list%': '<(enable_app_list)',
(...skipping 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after
2589 }], 2594 }],
2590 ['enable_app_list==1', { 2595 ['enable_app_list==1', {
2591 'defines': ['ENABLE_APP_LIST=1'], 2596 'defines': ['ENABLE_APP_LIST=1'],
2592 }], 2597 }],
2593 ['enable_settings_app==1', { 2598 ['enable_settings_app==1', {
2594 'defines': ['ENABLE_SETTINGS_APP=1'], 2599 'defines': ['ENABLE_SETTINGS_APP=1'],
2595 }], 2600 }],
2596 ['disable_ftp_support==1', { 2601 ['disable_ftp_support==1', {
2597 'defines': ['DISABLE_FTP_SUPPORT=1'], 2602 'defines': ['DISABLE_FTP_SUPPORT=1'],
2598 }], 2603 }],
2604 ['use_icu_alternatives==1', {
2605 'defines': ['USE_ICU_ALTERNATIVES=1'],
2606 }],
2599 ['enable_managed_users==1', { 2607 ['enable_managed_users==1', {
2600 'defines': ['ENABLE_MANAGED_USERS=1'], 2608 'defines': ['ENABLE_MANAGED_USERS=1'],
2601 }], 2609 }],
2602 ['data_reduction_fallback_host != ""', { 2610 ['data_reduction_fallback_host != ""', {
2603 'defines': [ 2611 'defines': [
2604 'DATA_REDUCTION_FALLBACK_HOST="<(data_reduction_fallback_host)"'], 2612 'DATA_REDUCTION_FALLBACK_HOST="<(data_reduction_fallback_host)"'],
2605 }], 2613 }],
2606 ['data_reduction_dev_host != ""', { 2614 ['data_reduction_dev_host != ""', {
2607 'defines': [ 2615 'defines': [
2608 'DATA_REDUCTION_DEV_HOST="<(data_reduction_dev_host)"'], 2616 'DATA_REDUCTION_DEV_HOST="<(data_reduction_dev_host)"'],
(...skipping 2637 matching lines...) Expand 10 before | Expand all | Expand 10 after
5246 # settings in target dicts. SYMROOT is a special case, because many other 5254 # settings in target dicts. SYMROOT is a special case, because many other
5247 # Xcode variables depend on it, including variables such as 5255 # Xcode variables depend on it, including variables such as
5248 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5256 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5249 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5257 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5250 # files to appear (when present) in the UI as actual files and not red 5258 # files to appear (when present) in the UI as actual files and not red
5251 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5259 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5252 # and therefore SYMROOT, needs to be set at the project level. 5260 # and therefore SYMROOT, needs to be set at the project level.
5253 'SYMROOT': '<(DEPTH)/xcodebuild', 5261 'SYMROOT': '<(DEPTH)/xcodebuild',
5254 }, 5262 },
5255 } 5263 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/android/cronet_jni.cc » ('j') | components/cronet/android/cronet_jni.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698