| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |