| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 SPEC = { | 9 SPEC = { |
| 10 'settings': { | 10 'settings': { |
| (...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 'chromium_config_kwargs': { | 1704 'chromium_config_kwargs': { |
| 1705 'BUILD_CONFIG': 'Release', | 1705 'BUILD_CONFIG': 'Release', |
| 1706 'TARGET_BITS': 64, | 1706 'TARGET_BITS': 64, |
| 1707 }, | 1707 }, |
| 1708 'test_generators': [steps.generate_gtest], | 1708 'test_generators': [steps.generate_gtest], |
| 1709 'bot_type': 'tester', | 1709 'bot_type': 'tester', |
| 1710 'parent_buildername': 'ClangToTWin64(dll)', | 1710 'parent_buildername': 'ClangToTWin64(dll)', |
| 1711 'testing': { 'platform': 'win' }, | 1711 'testing': { 'platform': 'win' }, |
| 1712 'enable_swarming': True, | 1712 'enable_swarming': True, |
| 1713 }, | 1713 }, |
| 1714 'Linux Builder (clobber)': { | |
| 1715 'chromium_config': 'chromium', | |
| 1716 'gclient_config': 'chromium', | |
| 1717 'chromium_apply_config': ['clobber', 'ninja_confirm_noop'], | |
| 1718 'chromium_config_kwargs': { | |
| 1719 'BUILD_CONFIG': 'Release', | |
| 1720 'TARGET_BITS': 64, | |
| 1721 }, | |
| 1722 'compile_targets': [ | |
| 1723 'chromium_builder_tests', | |
| 1724 ], | |
| 1725 'testing': { | |
| 1726 'platform': 'linux', | |
| 1727 }, | |
| 1728 }, | |
| 1729 'Win Builder (ANGLE)': { | 1714 'Win Builder (ANGLE)': { |
| 1730 'chromium_config': 'chromium', | 1715 'chromium_config': 'chromium', |
| 1731 'gclient_config': 'chromium', | 1716 'gclient_config': 'chromium', |
| 1732 'gclient_apply_config': ['angle_top_of_tree'], | 1717 'gclient_apply_config': ['angle_top_of_tree'], |
| 1733 'chromium_config_kwargs': { | 1718 'chromium_config_kwargs': { |
| 1734 'BUILD_CONFIG': 'Release', | 1719 'BUILD_CONFIG': 'Release', |
| 1735 'TARGET_BITS': 32, | 1720 'TARGET_BITS': 32, |
| 1736 }, | 1721 }, |
| 1737 'bot_type': 'builder', | 1722 'bot_type': 'builder', |
| 1738 'compile_targets': [ | 1723 'compile_targets': [ |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2081 'compile_targets': [ | 2066 'compile_targets': [ |
| 2082 'chrome', | 2067 'chrome', |
| 2083 ], | 2068 ], |
| 2084 'enable_swarming': True, | 2069 'enable_swarming': True, |
| 2085 'testing': { | 2070 'testing': { |
| 2086 'platform': 'win', | 2071 'platform': 'win', |
| 2087 }, | 2072 }, |
| 2088 }, | 2073 }, |
| 2089 }, | 2074 }, |
| 2090 } | 2075 } |
| OLD | NEW |