| 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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 'message_loop/message_pump_glib_unittest.cc', | 788 'message_loop/message_pump_glib_unittest.cc', |
| 789 ] | 789 ] |
| 790 }], | 790 }], |
| 791 ['OS == "linux" and linux_use_tcmalloc==1', { | 791 ['OS == "linux" and linux_use_tcmalloc==1', { |
| 792 'dependencies': [ | 792 'dependencies': [ |
| 793 'allocator/allocator.gyp:allocator', | 793 'allocator/allocator.gyp:allocator', |
| 794 ], | 794 ], |
| 795 }, | 795 }, |
| 796 ], | 796 ], |
| 797 ['OS == "win"', { | 797 ['OS == "win"', { |
| 798 # This is needed to trigger the dll copy step on windows. | 798 'conditions': [ |
| 799 # TODO(mark): This should not be necessary. | 799 ['icu_use_data_file_flag==0', { |
| 800 'dependencies': [ | 800 # This is needed to trigger the dll copy step on windows. |
| 801 '../third_party/icu/icu.gyp:icudata', | 801 # TODO(mark): This should not be necessary. |
| 802 'dependencies': [ |
| 803 '../third_party/icu/icu.gyp:icudata', |
| 804 ], |
| 805 }], |
| 802 ], | 806 ], |
| 803 'sources!': [ | 807 'sources!': [ |
| 804 'file_descriptor_shuffle_unittest.cc', | 808 'file_descriptor_shuffle_unittest.cc', |
| 805 'files/dir_reader_posix_unittest.cc', | 809 'files/dir_reader_posix_unittest.cc', |
| 806 'threading/worker_pool_posix_unittest.cc', | 810 'threading/worker_pool_posix_unittest.cc', |
| 807 'message_loop/message_pump_libevent_unittest.cc', | 811 'message_loop/message_pump_libevent_unittest.cc', |
| 808 ], | 812 ], |
| 809 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 813 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 810 'msvs_disabled_warnings': [ | 814 'msvs_disabled_warnings': [ |
| 811 4267, | 815 4267, |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 'base_unittests.isolate', | 1404 'base_unittests.isolate', |
| 1401 ], | 1405 ], |
| 1402 'sources': [ | 1406 'sources': [ |
| 1403 'base_unittests.isolate', | 1407 'base_unittests.isolate', |
| 1404 ], | 1408 ], |
| 1405 }, | 1409 }, |
| 1406 ], | 1410 ], |
| 1407 }], | 1411 }], |
| 1408 ], | 1412 ], |
| 1409 } | 1413 } |
| OLD | NEW |