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 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1765 steps.generate_isolated_script, | 1765 steps.generate_isolated_script, |
1766 ], | 1766 ], |
1767 'parent_buildername': 'Win Builder (ANGLE)', | 1767 'parent_buildername': 'Win Builder (ANGLE)', |
1768 'testing': { | 1768 'testing': { |
1769 'platform': 'win', | 1769 'platform': 'win', |
1770 }, | 1770 }, |
1771 'enable_swarming': True, | 1771 'enable_swarming': True, |
1772 'use_isolate': True, | 1772 'use_isolate': True, |
1773 }, | 1773 }, |
1774 | 1774 |
1775 'Headless Linux': { | |
1776 'chromium_config': 'chromium', | |
jbudorick
2016/03/29 15:13:35
This should also have:
'chromium_apply_config':
perezju
2016/03/29 15:37:41
Change in this CL done.
| |
1777 'gclient_config': 'chromium', | |
1778 'chromium_config_kwargs': { | |
1779 'BUILD_CONFIG': 'Debug', | |
1780 'TARGET_BITS': 64, | |
1781 'TARGET_PLATFORM': 'linux', | |
1782 }, | |
1783 'bot_type': 'builder_tester', | |
1784 'compile_targets': [ | |
1785 'headless_lib', | |
1786 'headless_tests', | |
1787 ], | |
1788 'test_generators': [ | |
1789 steps.generate_gtest, | |
1790 ], | |
1791 'testing': { | |
1792 'platform': 'linux', | |
1793 }, | |
1794 }, | |
1795 | |
1775 'Android Builder (dbg)': { | 1796 'Android Builder (dbg)': { |
1776 'chromium_config': 'android', | 1797 'chromium_config': 'android', |
1777 'chromium_apply_config': ['chrome_with_codecs'], | 1798 'chromium_apply_config': ['chrome_with_codecs'], |
1778 'gclient_config': 'chromium', | 1799 'gclient_config': 'chromium', |
1779 'gclient_apply_config': ['android'], | 1800 'gclient_apply_config': ['android'], |
1780 'chromium_config_kwargs': { | 1801 'chromium_config_kwargs': { |
1781 'BUILD_CONFIG': 'Debug', | 1802 'BUILD_CONFIG': 'Debug', |
1782 'TARGET_BITS': 32, | 1803 'TARGET_BITS': 32, |
1783 'TARGET_PLATFORM': 'android', | 1804 'TARGET_PLATFORM': 'android', |
1784 }, | 1805 }, |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2070 'compile_targets': [ | 2091 'compile_targets': [ |
2071 'chrome', | 2092 'chrome', |
2072 ], | 2093 ], |
2073 'enable_swarming': True, | 2094 'enable_swarming': True, |
2074 'testing': { | 2095 'testing': { |
2075 'platform': 'win', | 2096 'platform': 'win', |
2076 }, | 2097 }, |
2077 }, | 2098 }, |
2078 }, | 2099 }, |
2079 } | 2100 } |
OLD | NEW |