| 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 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1792 'parent_buildername': 'Win Builder (ANGLE)', | 1792 'parent_buildername': 'Win Builder (ANGLE)', |
| 1793 'testing': { | 1793 'testing': { |
| 1794 'platform': 'win', | 1794 'platform': 'win', |
| 1795 }, | 1795 }, |
| 1796 'enable_swarming': True, | 1796 'enable_swarming': True, |
| 1797 'use_isolate': True, | 1797 'use_isolate': True, |
| 1798 }, | 1798 }, |
| 1799 | 1799 |
| 1800 'Android Builder (dbg)': { | 1800 'Android Builder (dbg)': { |
| 1801 'chromium_config': 'android', | 1801 'chromium_config': 'android', |
| 1802 'chromium_apply_config': ['chrome_with_codecs'], |
| 1802 'gclient_config': 'chromium', | 1803 'gclient_config': 'chromium', |
| 1803 'gclient_apply_config': ['android'], | 1804 'gclient_apply_config': ['android'], |
| 1804 'chromium_config_kwargs': { | 1805 'chromium_config_kwargs': { |
| 1805 'BUILD_CONFIG': 'Debug', | 1806 'BUILD_CONFIG': 'Debug', |
| 1806 'TARGET_BITS': 32, | 1807 'TARGET_BITS': 32, |
| 1807 'TARGET_PLATFORM': 'android', | 1808 'TARGET_PLATFORM': 'android', |
| 1808 }, | 1809 }, |
| 1809 'android_config': 'main_builder', | 1810 'android_config': 'main_builder', |
| 1810 'bot_type': 'builder', | 1811 'bot_type': 'builder', |
| 1811 'compile_targets': [ | 1812 'compile_targets': [ |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2091 'compile_targets': [ | 2092 'compile_targets': [ |
| 2092 'chrome', | 2093 'chrome', |
| 2093 ], | 2094 ], |
| 2094 'enable_swarming': True, | 2095 'enable_swarming': True, |
| 2095 'testing': { | 2096 'testing': { |
| 2096 'platform': 'win', | 2097 'platform': 'win', |
| 2097 }, | 2098 }, |
| 2098 }, | 2099 }, |
| 2099 }, | 2100 }, |
| 2100 } | 2101 } |
| OLD | NEW |