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

Side by Side Diff: build/common.gypi

Issue 156333002: Enable icu_use_data_file_flag on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: icudtl.dat made readable Created 6 years, 10 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 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1297 }], 1297 }],
1298 # All Chrome builds have breakpad symbols, but only process the 1298 # All Chrome builds have breakpad symbols, but only process the
1299 # symbols from official builds. 1299 # symbols from official builds.
1300 ['(branding=="Chrome" and buildtype=="Official")', { 1300 ['(branding=="Chrome" and buildtype=="Official")', {
1301 'linux_dump_symbols%': 1, 1301 'linux_dump_symbols%': 1,
1302 1302
1303 # Omit unwind support in official release builds to save space. We 1303 # Omit unwind support in official release builds to save space. We
1304 # can use breakpad for these builds. 1304 # can use breakpad for these builds.
1305 'release_unwind_tables%': 0, 1305 'release_unwind_tables%': 0,
1306 }], 1306 }],
1307 # TODO(jungshik): Turn this on on Android and Chrome OS 1307 # TODO(jshin): Turn this on on CrOS
1308 ['OS!="android" and chromeos==0', { 1308 » # Should we also disable this when use_system_icu==1 on Linux?
Mark Mentovai 2014/02/10 20:07:13 No tabs.
1309 ['chromeos==0 and android_webview_build==0', {
1309 'icu_use_data_file_flag%': 1, 1310 'icu_use_data_file_flag%': 1,
1310 }], 1311 }],
1311 ], 1312 ],
1312 }], # os_posix==1 and OS!="mac" and OS!="ios" 1313 }], # os_posix==1 and OS!="mac" and OS!="ios"
1313 ['OS=="mac"', { 1314 ['OS=="mac"', {
1314 'icu_use_data_file_flag%': 1, 1315 'icu_use_data_file_flag%': 1,
1315 }], # os=="mac" 1316 }], # os=="mac"
1316 ['OS=="ios"', { 1317 ['OS=="ios"', {
1317 'disable_nacl%': 1, 1318 'disable_nacl%': 1,
1318 'enable_background%': 0, 1319 'enable_background%': 0,
(...skipping 3566 matching lines...) Expand 10 before | Expand all | Expand 10 after
4885 # settings in target dicts. SYMROOT is a special case, because many other 4886 # settings in target dicts. SYMROOT is a special case, because many other
4886 # Xcode variables depend on it, including variables such as 4887 # Xcode variables depend on it, including variables such as
4887 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4888 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4888 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4889 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4889 # files to appear (when present) in the UI as actual files and not red 4890 # files to appear (when present) in the UI as actual files and not red
4890 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4891 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4891 # and therefore SYMROOT, needs to be set at the project level. 4892 # and therefore SYMROOT, needs to be set at the project level.
4892 'SYMROOT': '<(DEPTH)/xcodebuild', 4893 'SYMROOT': '<(DEPTH)/xcodebuild',
4893 }, 4894 },
4894 } 4895 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698