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

Side by Side Diff: base/base.gyp

Issue 109013004: Use icudat*.dat file on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move icudtl.dat copy to content_shell framework target Created 6 years, 11 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 | build/common.gypi » ('j') | 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 # i18n/rtl.cc uses gtk 299 # i18n/rtl.cc uses gtk
300 '../build/linux/system.gyp:gtk', 300 '../build/linux/system.gyp:gtk',
301 ], 301 ],
302 }], 302 }],
303 ['OS == "win"', { 303 ['OS == "win"', {
304 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 304 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
305 'msvs_disabled_warnings': [ 305 'msvs_disabled_warnings': [
306 4267, 306 4267,
307 ], 307 ],
308 }], 308 }],
309 ['icu_use_data_file_flag==1', {
310 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
311 }, { # else icu_use_data_file_flag !=1
312 'conditions': [
313 ['OS=="win"', {
314 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
315 }, {
316 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
317 }],
318 ],
319 }],
309 ], 320 ],
310 'export_dependent_settings': [ 321 'export_dependent_settings': [
311 'base', 322 'base',
312 ], 323 ],
313 324
314 325
315 }, 326 },
316 { 327 {
317 'target_name': 'base_message_loop_tests', 328 'target_name': 'base_message_loop_tests',
318 'type': 'static_library', 329 'type': 'static_library',
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1409 'base_unittests.isolate', 1420 'base_unittests.isolate',
1410 ], 1421 ],
1411 'sources': [ 1422 'sources': [
1412 'base_unittests.isolate', 1423 'base_unittests.isolate',
1413 ], 1424 ],
1414 }, 1425 },
1415 ], 1426 ],
1416 }], 1427 }],
1417 ], 1428 ],
1418 } 1429 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698