| 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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 }], | 692 }], |
| 693 [ 'OS == "win" and target_arch == "x64"', { | 693 [ 'OS == "win" and target_arch == "x64"', { |
| 694 'sources': [ | 694 'sources': [ |
| 695 'profiler/win32_stack_frame_unwinder_unittest.cc', | 695 'profiler/win32_stack_frame_unwinder_unittest.cc', |
| 696 ], | 696 ], |
| 697 'dependencies': [ | 697 'dependencies': [ |
| 698 'base_profiler_test_support_library', | 698 'base_profiler_test_support_library', |
| 699 ], | 699 ], |
| 700 }], | 700 }], |
| 701 ['OS == "win"', { | 701 ['OS == "win"', { |
| 702 'dependencies': [ |
| 703 'scoped_handle_test_dll' |
| 704 ], |
| 702 'sources!': [ | 705 'sources!': [ |
| 703 'file_descriptor_shuffle_unittest.cc', | 706 'file_descriptor_shuffle_unittest.cc', |
| 704 'files/dir_reader_posix_unittest.cc', | 707 'files/dir_reader_posix_unittest.cc', |
| 705 'message_loop/message_pump_libevent_unittest.cc', | 708 'message_loop/message_pump_libevent_unittest.cc', |
| 706 'threading/worker_pool_posix_unittest.cc', | 709 'threading/worker_pool_posix_unittest.cc', |
| 707 ], | 710 ], |
| 708 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 711 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 709 'msvs_disabled_warnings': [ | 712 'msvs_disabled_warnings': [ |
| 710 4267, | 713 4267, |
| 711 ], | 714 ], |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 'cfgmgr32.dll', | 1673 'cfgmgr32.dll', |
| 1671 'shell32.dll', | 1674 'shell32.dll', |
| 1672 ], | 1675 ], |
| 1673 'AdditionalDependencies': [ | 1676 'AdditionalDependencies': [ |
| 1674 'cfgmgr32.lib', | 1677 'cfgmgr32.lib', |
| 1675 'shell32.lib', | 1678 'shell32.lib', |
| 1676 ], | 1679 ], |
| 1677 }, | 1680 }, |
| 1678 }, | 1681 }, |
| 1679 }, | 1682 }, |
| 1683 { |
| 1684 'target_name': 'scoped_handle_test_dll', |
| 1685 'type': 'shared_library', |
| 1686 'dependencies': [ |
| 1687 'base', |
| 1688 ], |
| 1689 'sources': [ |
| 1690 'win/scoped_handle_test_dll.cc', |
| 1691 'win/scoped_handle_test_dll.h', |
| 1692 ], |
| 1693 }, |
| 1680 ], | 1694 ], |
| 1681 }], | 1695 }], |
| 1682 ['test_isolation_mode != "noop"', { | 1696 ['test_isolation_mode != "noop"', { |
| 1683 'targets': [ | 1697 'targets': [ |
| 1684 { | 1698 { |
| 1685 'target_name': 'base_unittests_run', | 1699 'target_name': 'base_unittests_run', |
| 1686 'type': 'none', | 1700 'type': 'none', |
| 1687 'dependencies': [ | 1701 'dependencies': [ |
| 1688 'base_unittests', | 1702 'base_unittests', |
| 1689 ], | 1703 ], |
| 1690 'includes': [ | 1704 'includes': [ |
| 1691 '../build/isolate.gypi', | 1705 '../build/isolate.gypi', |
| 1692 ], | 1706 ], |
| 1693 'sources': [ | 1707 'sources': [ |
| 1694 'base_unittests.isolate', | 1708 'base_unittests.isolate', |
| 1695 ], | 1709 ], |
| 1696 }, | 1710 }, |
| 1697 ], | 1711 ], |
| 1698 }], | 1712 }], |
| 1699 ], | 1713 ], |
| 1700 } | 1714 } |
| OLD | NEW |