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 1983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1994 'root_devices': True, | 1994 'root_devices': True, |
1995 'enable_swarming': False, | 1995 'enable_swarming': False, |
1996 'tests': [ | 1996 'tests': [ |
1997 steps.GTestTest('remoting_unittests'), | 1997 steps.GTestTest('remoting_unittests'), |
1998 steps.AndroidInstrumentationTest('ChromotingTest'), | 1998 steps.AndroidInstrumentationTest('ChromotingTest'), |
1999 ], | 1999 ], |
2000 'testing': { | 2000 'testing': { |
2001 'platform': 'linux', | 2001 'platform': 'linux', |
2002 }, | 2002 }, |
2003 }, | 2003 }, |
| 2004 'Android Find Annotated Test': { |
| 2005 'chromium_config': 'android', |
| 2006 'gclient_config': 'chromium', |
| 2007 'gclient_apply_config': ['android'], |
| 2008 'chromium_config_kwargs': { |
| 2009 'BUILD_CONFIG': 'Debug', |
| 2010 'TARGET_PLATFORM': 'android', |
| 2011 }, |
| 2012 'bot_type': 'builder_tester', |
| 2013 'android_config': 'main_builder_mb', |
| 2014 'remove_system_webview': True, |
| 2015 'tests': [ |
| 2016 steps.FindAnnotatedTest(), |
| 2017 ], |
| 2018 'testing': { |
| 2019 'platform': 'linux', |
| 2020 }, |
| 2021 }, |
| 2022 |
| 2023 |
2004 'Android Asan Builder Tests (dbg)': { | 2024 'Android Asan Builder Tests (dbg)': { |
2005 'chromium_config': 'android', | 2025 'chromium_config': 'android', |
2006 'chromium_apply_config': ['mb'], | 2026 'chromium_apply_config': ['mb'], |
2007 'gclient_config': 'chromium', | 2027 'gclient_config': 'chromium', |
2008 'gclient_apply_config': ['android'], | 2028 'gclient_apply_config': ['android'], |
2009 'chromium_config_kwargs': { | 2029 'chromium_config_kwargs': { |
2010 'BUILD_CONFIG': 'Debug', | 2030 'BUILD_CONFIG': 'Debug', |
2011 'TARGET_BITS': 32, | 2031 'TARGET_BITS': 32, |
2012 'TARGET_PLATFORM': 'android', | 2032 'TARGET_PLATFORM': 'android', |
2013 }, | 2033 }, |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2206 steps.generate_gtest, | 2226 steps.generate_gtest, |
2207 steps.generate_script, | 2227 steps.generate_script, |
2208 steps.generate_isolated_script, | 2228 steps.generate_isolated_script, |
2209 ], | 2229 ], |
2210 'testing': { 'platform': 'win', }, | 2230 'testing': { 'platform': 'win', }, |
2211 'use_isolate': True, | 2231 'use_isolate': True, |
2212 'enable_swarming': True, | 2232 'enable_swarming': True, |
2213 }, | 2233 }, |
2214 }, | 2234 }, |
2215 } | 2235 } |
OLD | NEW |