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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 'malloc_wrapper', | 744 'malloc_wrapper', |
745 ], | 745 ], |
746 'conditions': [ | 746 'conditions': [ |
747 ['use_allocator!="none"', { | 747 ['use_allocator!="none"', { |
748 'dependencies': [ | 748 'dependencies': [ |
749 'allocator/allocator.gyp:allocator', | 749 'allocator/allocator.gyp:allocator', |
750 ], | 750 ], |
751 }], | 751 }], |
752 ]}, | 752 ]}, |
753 ], | 753 ], |
| 754 [ 'OS == "win" and target_arch == "x64"', { |
| 755 'sources': [ |
| 756 'profiler/win32_stack_frame_unwinder_unittest.cc', |
| 757 ], |
| 758 }], |
754 ['OS == "win"', { | 759 ['OS == "win"', { |
755 'sources!': [ | 760 'sources!': [ |
756 'file_descriptor_shuffle_unittest.cc', | 761 'file_descriptor_shuffle_unittest.cc', |
757 'files/dir_reader_posix_unittest.cc', | 762 'files/dir_reader_posix_unittest.cc', |
758 'message_loop/message_pump_libevent_unittest.cc', | 763 'message_loop/message_pump_libevent_unittest.cc', |
759 'threading/worker_pool_posix_unittest.cc', | 764 'threading/worker_pool_posix_unittest.cc', |
760 ], | 765 ], |
761 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 766 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
762 'msvs_disabled_warnings': [ | 767 'msvs_disabled_warnings': [ |
763 4267, | 768 4267, |
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1622 '../build/isolate.gypi', | 1627 '../build/isolate.gypi', |
1623 ], | 1628 ], |
1624 'sources': [ | 1629 'sources': [ |
1625 'base_unittests.isolate', | 1630 'base_unittests.isolate', |
1626 ], | 1631 ], |
1627 }, | 1632 }, |
1628 ], | 1633 ], |
1629 }], | 1634 }], |
1630 ], | 1635 ], |
1631 } | 1636 } |
OLD | NEW |