Chromium Code Reviews| 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 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1984 'root_devices': True, | 1984 'root_devices': True, |
| 1985 'enable_swarming': False, | 1985 'enable_swarming': False, |
| 1986 'tests': [ | 1986 'tests': [ |
| 1987 steps.GTestTest('remoting_unittests'), | 1987 steps.GTestTest('remoting_unittests'), |
| 1988 steps.AndroidInstrumentationTest('ChromotingTest'), | 1988 steps.AndroidInstrumentationTest('ChromotingTest'), |
| 1989 ], | 1989 ], |
| 1990 'testing': { | 1990 'testing': { |
| 1991 'platform': 'linux', | 1991 'platform': 'linux', |
| 1992 }, | 1992 }, |
| 1993 }, | 1993 }, |
| 1994 | 1994 'Android Asan Builder Tests (dbg)': { |
| 1995 | 1995 'chromium_config': 'android', |
| 1996 'chromium_apply_config': ['mb'], | |
| 1997 'gclient_config': 'chromium', | |
| 1998 'gclient_apply_config': ['android'], | |
| 1999 'chromium_config_kwargs': { | |
| 2000 'BUILD_CONFIG': 'Debug', | |
| 2001 'TARGET_BITS': 32, | |
| 2002 'TARGET_PLATFORM': 'android', | |
| 2003 }, | |
| 2004 'bot_type': 'builder_tester', | |
| 2005 'android_config': 'clang_tests', | |
| 2006 'root_devices': True, | |
| 2007 'tests': [ | |
| 2008 steps.AndroidInstrumentationTest('AndroidWebViewTest', tool='asan'), | |
|
bpastene
2016/03/30 18:43:51
There's no support for adding 'tool' or kwarg fiel
jbudorick
2016/03/30 19:23:33
sgtm
| |
| 2009 steps.AndroidInstrumentationTest('ChromePublicTest', tool ='asan'), | |
|
jbudorick
2016/03/30 19:23:33
nit: no space before =
| |
| 2010 steps.AndroidInstrumentationTest('ContentShellTest', tool= 'asan'), | |
|
jbudorick
2016/03/30 19:23:33
nit: no space after =
| |
| 2011 steps.AndroidInstrumentationTest('ChromeSyncShellTest', tool='asan'), | |
| 2012 ], | |
| 2013 'test_generators': [ | |
| 2014 steps.generate_gtest, | |
| 2015 steps.generate_instrumentation_test, | |
| 2016 steps.generate_isolated_script, | |
| 2017 steps.generate_script, | |
| 2018 ], | |
| 2019 'testing': { | |
| 2020 'platform': 'linux', | |
| 2021 }, | |
| 2022 }, | |
| 1996 'Chromium Win 10': { | 2023 'Chromium Win 10': { |
| 1997 'chromium_config': 'chromium', | 2024 'chromium_config': 'chromium', |
| 1998 'gclient_config': 'chromium', | 2025 'gclient_config': 'chromium', |
| 1999 'GYP_DEFINES': { | 2026 'GYP_DEFINES': { |
| 2000 'dcheck_always_on': '1', | 2027 'dcheck_always_on': '1', |
| 2001 }, | 2028 }, |
| 2002 'chromium_config_kwargs': { | 2029 'chromium_config_kwargs': { |
| 2003 'BUILD_CONFIG': 'Release', | 2030 'BUILD_CONFIG': 'Release', |
| 2004 'TARGET_BITS': 64, | 2031 'TARGET_BITS': 64, |
| 2005 }, | 2032 }, |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2108 'compile_targets': [ | 2135 'compile_targets': [ |
| 2109 'chrome', | 2136 'chrome', |
| 2110 ], | 2137 ], |
| 2111 'enable_swarming': True, | 2138 'enable_swarming': True, |
| 2112 'testing': { | 2139 'testing': { |
| 2113 'platform': 'win', | 2140 'platform': 'win', |
| 2114 }, | 2141 }, |
| 2115 }, | 2142 }, |
| 2116 }, | 2143 }, |
| 2117 } | 2144 } |
| OLD | NEW |