| 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 | 9 |
| 10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| (...skipping 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 }, | 2002 }, |
| 2003 }, | 2003 }, |
| 2004 'Android Find Annotated Test': { | 2004 'Android Find Annotated Test': { |
| 2005 'chromium_config': 'android', | 2005 'chromium_config': 'android', |
| 2006 'gclient_config': 'chromium', | 2006 'gclient_config': 'chromium', |
| 2007 'gclient_apply_config': ['android'], | 2007 'gclient_apply_config': ['android'], |
| 2008 'chromium_config_kwargs': { | 2008 'chromium_config_kwargs': { |
| 2009 'BUILD_CONFIG': 'Debug', | 2009 'BUILD_CONFIG': 'Debug', |
| 2010 'TARGET_PLATFORM': 'android', | 2010 'TARGET_PLATFORM': 'android', |
| 2011 }, | 2011 }, |
| 2012 'bot_type': 'builder_tester', | 2012 'parent_buildername': 'Android Builder (dbg)', |
| 2013 'bot_type': 'tester', |
| 2013 'android_config': 'main_builder_mb', | 2014 'android_config': 'main_builder_mb', |
| 2014 'remove_system_webview': True, | 2015 'remove_system_webview': True, |
| 2015 'tests': [ | 2016 'tests': [ |
| 2016 steps.FindAnnotatedTest(), | 2017 steps.FindAnnotatedTest(), |
| 2017 ], | 2018 ], |
| 2018 'testing': { | 2019 'testing': { |
| 2019 'platform': 'linux', | 2020 'platform': 'linux', |
| 2020 }, | 2021 }, |
| 2021 }, | 2022 }, |
| 2022 | 2023 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2226 steps.generate_gtest, | 2227 steps.generate_gtest, |
| 2227 steps.generate_script, | 2228 steps.generate_script, |
| 2228 steps.generate_isolated_script, | 2229 steps.generate_isolated_script, |
| 2229 ], | 2230 ], |
| 2230 'testing': { 'platform': 'win', }, | 2231 'testing': { 'platform': 'win', }, |
| 2231 'use_isolate': True, | 2232 'use_isolate': True, |
| 2232 'enable_swarming': True, | 2233 'enable_swarming': True, |
| 2233 }, | 2234 }, |
| 2234 }, | 2235 }, |
| 2235 } | 2236 } |
| OLD | NEW |