| 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 'message_loop/message_pump_glib_unittest.cc', | 754 'message_loop/message_pump_glib_unittest.cc', |
| 755 ] | 755 ] |
| 756 }], | 756 }], |
| 757 ['OS == "linux" and linux_use_tcmalloc==1', { | 757 ['OS == "linux" and linux_use_tcmalloc==1', { |
| 758 'dependencies': [ | 758 'dependencies': [ |
| 759 'allocator/allocator.gyp:allocator', | 759 'allocator/allocator.gyp:allocator', |
| 760 ], | 760 ], |
| 761 }, | 761 }, |
| 762 ], | 762 ], |
| 763 ['OS == "win"', { | 763 ['OS == "win"', { |
| 764 # This is needed to trigger the dll copy step on windows. |
| 765 # TODO(mark): This should not be necessary. |
| 766 'dependencies': [ |
| 767 '../third_party/icu/icu.gyp:icudata', |
| 768 ], |
| 764 'sources!': [ | 769 'sources!': [ |
| 765 'file_descriptor_shuffle_unittest.cc', | 770 'file_descriptor_shuffle_unittest.cc', |
| 766 'files/dir_reader_posix_unittest.cc', | 771 'files/dir_reader_posix_unittest.cc', |
| 767 'threading/worker_pool_posix_unittest.cc', | 772 'threading/worker_pool_posix_unittest.cc', |
| 768 'message_loop/message_pump_libevent_unittest.cc', | 773 'message_loop/message_pump_libevent_unittest.cc', |
| 769 ], | 774 ], |
| 770 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 775 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 771 'msvs_disabled_warnings': [ | 776 'msvs_disabled_warnings': [ |
| 772 4267, | 777 4267, |
| 773 ], | 778 ], |
| 779 # This is needed so base_unittests uses the allocator shim, as |
| 780 # SecurityTest.MemoryAllocationRestriction* tests are dependent |
| 781 # on tcmalloc. |
| 782 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into |
| 783 # their own test suite. |
| 774 'conditions': [ | 784 'conditions': [ |
| 775 # This is needed so base_unittests uses the allocator shim, as | |
| 776 # SecurityTest.MemoryAllocationRestriction* tests are dependent | |
| 777 # on tcmalloc. | |
| 778 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into | |
| 779 # their own test suite. | |
| 780 ['win_use_allocator_shim==1', { | 785 ['win_use_allocator_shim==1', { |
| 781 'dependencies': [ | 786 'dependencies': [ |
| 782 'allocator/allocator.gyp:allocator', | 787 'allocator/allocator.gyp:allocator', |
| 783 ], | 788 ], |
| 784 }], | 789 }], |
| 785 ['icu_use_data_file_flag==0', { | |
| 786 # This is needed to trigger the dll copy step on windows. | |
| 787 # TODO(mark): This should not be necessary. | |
| 788 'dependencies': [ | |
| 789 '../third_party/icu/icu.gyp:icudata', | |
| 790 ], | |
| 791 }], | |
| 792 ], | 790 ], |
| 793 }, { # OS != "win" | 791 }, { # OS != "win" |
| 794 'dependencies': [ | 792 'dependencies': [ |
| 795 '../third_party/libevent/libevent.gyp:libevent' | 793 '../third_party/libevent/libevent.gyp:libevent' |
| 796 ], | 794 ], |
| 797 'sources/': [ | 795 'sources/': [ |
| 798 ['exclude', '^win/'], | 796 ['exclude', '^win/'], |
| 799 ], | 797 ], |
| 800 'sources!': [ | 798 'sources!': [ |
| 801 'win/win_util_unittest.cc', | 799 'win/win_util_unittest.cc', |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1417 'base_unittests.isolate', | 1415 'base_unittests.isolate', |
| 1418 ], | 1416 ], |
| 1419 'sources': [ | 1417 'sources': [ |
| 1420 'base_unittests.isolate', | 1418 'base_unittests.isolate', |
| 1421 ], | 1419 ], |
| 1422 }, | 1420 }, |
| 1423 ], | 1421 ], |
| 1424 }], | 1422 }], |
| 1425 ], | 1423 ], |
| 1426 } | 1424 } |
| OLD | NEW |