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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 'sources!': [ | 766 'sources!': [ |
767 'file_descriptor_shuffle_unittest.cc', | 767 'file_descriptor_shuffle_unittest.cc', |
768 'files/dir_reader_posix_unittest.cc', | 768 'files/dir_reader_posix_unittest.cc', |
769 'message_loop/message_pump_libevent_unittest.cc', | 769 'message_loop/message_pump_libevent_unittest.cc', |
770 'threading/worker_pool_posix_unittest.cc', | 770 'threading/worker_pool_posix_unittest.cc', |
771 ], | 771 ], |
772 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 772 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
773 'msvs_disabled_warnings': [ | 773 'msvs_disabled_warnings': [ |
774 4267, | 774 4267, |
775 ], | 775 ], |
776 'copies': [ | |
777 { | |
778 'destination': '<(PRODUCT_DIR)/', | |
779 'files': [ | |
780 '../build/win/dbghelp_xp/dbghelp.dll', | |
781 ], | |
782 }, | |
783 ], | |
784 'conditions': [ | 776 'conditions': [ |
785 # This is needed so base_unittests uses the allocator shim, as | 777 # This is needed so base_unittests uses the allocator shim, as |
786 # SecurityTest.MemoryAllocationRestriction* tests are dependent | 778 # SecurityTest.MemoryAllocationRestriction* tests are dependent |
787 # on tcmalloc. | 779 # on tcmalloc. |
788 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into | 780 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into |
789 # their own test suite. | 781 # their own test suite. |
790 ['win_use_allocator_shim==1', { | 782 ['win_use_allocator_shim==1', { |
791 'dependencies': [ | 783 'dependencies': [ |
792 'allocator/allocator.gyp:allocator', | 784 'allocator/allocator.gyp:allocator', |
793 ], | 785 ], |
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1567 'dependencies': [ | 1559 'dependencies': [ |
1568 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1560 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1569 ], | 1561 ], |
1570 }], | 1562 }], |
1571 ], | 1563 ], |
1572 }, | 1564 }, |
1573 ], | 1565 ], |
1574 }], | 1566 }], |
1575 ], | 1567 ], |
1576 } | 1568 } |
OLD | NEW |