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 { | 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 # i18n/rtl.cc uses gtk | 300 # i18n/rtl.cc uses gtk |
301 '../build/linux/system.gyp:gtk', | 301 '../build/linux/system.gyp:gtk', |
302 ], | 302 ], |
303 }], | 303 }], |
304 ['OS == "win"', { | 304 ['OS == "win"', { |
305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
306 'msvs_disabled_warnings': [ | 306 'msvs_disabled_warnings': [ |
307 4267, | 307 4267, |
308 ], | 308 ], |
309 }], | 309 }], |
| 310 ['icu_use_data_file_flag==1', { |
| 311 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], |
| 312 }, { # else icu_use_data_file_flag !=1 |
| 313 'conditions': [ |
| 314 ['OS=="win"', { |
| 315 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], |
| 316 }, { |
| 317 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], |
| 318 }], |
| 319 ], |
| 320 }], |
310 ], | 321 ], |
311 'export_dependent_settings': [ | 322 'export_dependent_settings': [ |
312 'base', | 323 'base', |
313 ], | 324 ], |
314 'defines': [ | 325 'defines': [ |
315 'BASE_I18N_IMPLEMENTATION', | 326 'BASE_I18N_IMPLEMENTATION', |
316 ], | 327 ], |
317 'sources': [ | 328 'sources': [ |
318 'i18n/base_i18n_export.h', | 329 'i18n/base_i18n_export.h', |
319 'i18n/bidi_line_iterator.cc', | 330 'i18n/bidi_line_iterator.cc', |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1389 'base_unittests.isolate', | 1400 'base_unittests.isolate', |
1390 ], | 1401 ], |
1391 'sources': [ | 1402 'sources': [ |
1392 'base_unittests.isolate', | 1403 'base_unittests.isolate', |
1393 ], | 1404 ], |
1394 }, | 1405 }, |
1395 ], | 1406 ], |
1396 }], | 1407 }], |
1397 ], | 1408 ], |
1398 } | 1409 } |
OLD | NEW |