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

Side by Side Diff: trunk/src/build/common.gypi

Issue 206713002: Revert 258278 "Use ICU data file on Android WebView." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 834
835 # Disable various features by default on embedded. 835 # Disable various features by default on embedded.
836 ['embedded==1', { 836 ['embedded==1', {
837 'remoting%': 0, 837 'remoting%': 0,
838 'enable_printing%': 0, 838 'enable_printing%': 0,
839 }], 839 }],
840 840
841 ['OS=="win"', { 841 ['OS=="win"', {
842 'use_mojo%': 1, 842 'use_mojo%': 1,
843 }], 843 }],
844
845 # By default, use ICU data file (icudtl.dat) on all platforms
846 # except when building Android WebView.
847 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
848 ['android_webview_build==0', {
849 'icu_use_data_file_flag%' : 1,
850 }, {
851 'icu_use_data_file_flag%' : 0,
852 }],
844 ], 853 ],
845 854
846 # Set this to 1 to enable use of concatenated impulse responses 855 # Set this to 1 to enable use of concatenated impulse responses
847 # for the HRTF panner in WebAudio. 856 # for the HRTF panner in WebAudio.
848 'use_concatenated_impulse_responses': 1, 857 'use_concatenated_impulse_responses': 1,
849 858
850 # You can set the variable 'use_official_google_api_keys' to 1 859 # You can set the variable 'use_official_google_api_keys' to 1
851 # to use the Google-internal file containing official API keys 860 # to use the Google-internal file containing official API keys
852 # for Google Chrome even in a developer build. Setting this 861 # for Google Chrome even in a developer build. Setting this
853 # variable explicitly to 1 will cause your build to fail if the 862 # variable explicitly to 1 will cause your build to fail if the
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 'cld_version%': '<(cld_version)', 995 'cld_version%': '<(cld_version)',
987 'cld2_table_size%': '<(cld2_table_size)', 996 'cld2_table_size%': '<(cld2_table_size)',
988 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 997 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
989 'disable_ftp_support%': '<(disable_ftp_support)', 998 'disable_ftp_support%': '<(disable_ftp_support)',
990 'enable_task_manager%': '<(enable_task_manager)', 999 'enable_task_manager%': '<(enable_task_manager)',
991 'sas_dll_path%': '<(sas_dll_path)', 1000 'sas_dll_path%': '<(sas_dll_path)',
992 'wix_path%': '<(wix_path)', 1001 'wix_path%': '<(wix_path)',
993 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1002 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
994 'use_system_libjpeg%': '<(use_system_libjpeg)', 1003 'use_system_libjpeg%': '<(use_system_libjpeg)',
995 'android_webview_build%': '<(android_webview_build)', 1004 'android_webview_build%': '<(android_webview_build)',
1005 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
996 'gyp_managed_install%': 0, 1006 'gyp_managed_install%': 0,
997 'create_standalone_apk%': 1, 1007 'create_standalone_apk%': 1,
998 'enable_app_list%': '<(enable_app_list)', 1008 'enable_app_list%': '<(enable_app_list)',
999 'use_default_render_theme%': '<(use_default_render_theme)', 1009 'use_default_render_theme%': '<(use_default_render_theme)',
1000 'enable_settings_app%': '<(enable_settings_app)', 1010 'enable_settings_app%': '<(enable_settings_app)',
1001 'google_api_key%': '<(google_api_key)', 1011 'google_api_key%': '<(google_api_key)',
1002 'google_default_client_id%': '<(google_default_client_id)', 1012 'google_default_client_id%': '<(google_default_client_id)',
1003 'google_default_client_secret%': '<(google_default_client_secret)', 1013 'google_default_client_secret%': '<(google_default_client_secret)',
1004 'enable_managed_users%': '<(enable_managed_users)', 1014 'enable_managed_users%': '<(enable_managed_users)',
1005 'native_discardable_memory%': '<(native_discardable_memory)', 1015 'native_discardable_memory%': '<(native_discardable_memory)',
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 1298
1289 # Use brlapi from brltty for braille display support. 1299 # Use brlapi from brltty for braille display support.
1290 'use_brlapi%': 0, 1300 'use_brlapi%': 0,
1291 1301
1292 # Relative path to icu.gyp from this file. 1302 # Relative path to icu.gyp from this file.
1293 'icu_gyp_path': '../third_party/icu/icu.gyp', 1303 'icu_gyp_path': '../third_party/icu/icu.gyp',
1294 1304
1295 # IPC fuzzer is disabled by default. 1305 # IPC fuzzer is disabled by default.
1296 'enable_ipc_fuzzer%': 0, 1306 'enable_ipc_fuzzer%': 0,
1297 1307
1298 # By default, use ICU data file (icudtl.dat) on all platforms.
1299 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
1300 'icu_use_data_file_flag%' : 1,
1301 1308
1302 # Force disable libstdc++ debug mode. 1309 # Force disable libstdc++ debug mode.
1303 'disable_glibcxx_debug%': 0, 1310 'disable_glibcxx_debug%': 0,
1304 1311
1305 # Set to 1 to compile with the hole punching for the protected video. 1312 # Set to 1 to compile with the hole punching for the protected video.
1306 'video_hole%': 0, 1313 'video_hole%': 0,
1307 1314
1308 'conditions': [ 1315 'conditions': [
1309 # Enable the Syzygy optimization step for the official builds. 1316 # Enable the Syzygy optimization step for the official builds.
1310 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { 1317 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 1381
1375 # Omit unwind support in official release builds to save space. We 1382 # Omit unwind support in official release builds to save space. We
1376 # can use breakpad for these builds. 1383 # can use breakpad for these builds.
1377 'release_unwind_tables%': 0, 1384 'release_unwind_tables%': 0,
1378 }], 1385 }],
1379 ], 1386 ],
1380 }], # os_posix==1 and OS!="mac" and OS!="ios" 1387 }], # os_posix==1 and OS!="mac" and OS!="ios"
1381 ['OS=="ios"', { 1388 ['OS=="ios"', {
1382 'disable_nacl%': 1, 1389 'disable_nacl%': 1,
1383 'enable_background%': 0, 1390 'enable_background%': 0,
1391 'icu_use_data_file_flag%': 1,
1384 'input_speech%': 0, 1392 'input_speech%': 0,
1385 'use_system_libxml%': 1, 1393 'use_system_libxml%': 1,
1386 'use_system_sqlite%': 1, 1394 'use_system_sqlite%': 1,
1387 'locales==': [ 1395 'locales==': [
1388 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX', 1396 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1389 'fi', 'fr', 'he', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms', 'nb', 1397 'fi', 'fr', 'he', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms', 'nb',
1390 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr', 'uk', 1398 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr', 'uk',
1391 'vi', 'zh-CN', 'zh-TW', 1399 'vi', 'zh-CN', 'zh-TW',
1392 ], 1400 ],
1393 1401
(...skipping 3717 matching lines...) Expand 10 before | Expand all | Expand 10 after
5111 # settings in target dicts. SYMROOT is a special case, because many other 5119 # settings in target dicts. SYMROOT is a special case, because many other
5112 # Xcode variables depend on it, including variables such as 5120 # Xcode variables depend on it, including variables such as
5113 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5121 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5114 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5122 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5115 # files to appear (when present) in the UI as actual files and not red 5123 # files to appear (when present) in the UI as actual files and not red
5116 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5124 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5117 # and therefore SYMROOT, needs to be set at the project level. 5125 # and therefore SYMROOT, needs to be set at the project level.
5118 'SYMROOT': '<(DEPTH)/xcodebuild', 5126 'SYMROOT': '<(DEPTH)/xcodebuild',
5119 }, 5127 },
5120 } 5128 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698