| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'tests': [ | 217 'tests': [ |
| 218 steps.PrintPreviewTests(), | 218 steps.PrintPreviewTests(), |
| 219 ], | 219 ], |
| 220 'bot_type': 'builder_tester', | 220 'bot_type': 'builder_tester', |
| 221 'testing': { | 221 'testing': { |
| 222 'platform': 'win', | 222 'platform': 'win', |
| 223 }, | 223 }, |
| 224 }, | 224 }, |
| 225 'CFI Linux': { | 225 'CFI Linux': { |
| 226 'chromium_config': 'chromium_cfi', | 226 'chromium_config': 'chromium_cfi', |
| 227 'chromium_apply_config': ['mb'], |
| 227 'gclient_config': 'chromium', | 228 'gclient_config': 'chromium', |
| 228 'chromium_config_kwargs': { | 229 'chromium_config_kwargs': { |
| 229 'BUILD_CONFIG': 'Release', | 230 'BUILD_CONFIG': 'Release', |
| 230 'TARGET_BITS': 64, | 231 'TARGET_BITS': 64, |
| 231 }, | 232 }, |
| 232 'test_generators': [ | 233 'test_generators': [ |
| 233 steps.generate_gtest, | 234 steps.generate_gtest, |
| 234 steps.generate_script, | 235 steps.generate_script, |
| 235 steps.generate_isolated_script, | 236 steps.generate_isolated_script, |
| 236 ], | 237 ], |
| (...skipping 1742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1979 steps.generate_gtest, | 1980 steps.generate_gtest, |
| 1980 steps.generate_script, | 1981 steps.generate_script, |
| 1981 steps.generate_isolated_script, | 1982 steps.generate_isolated_script, |
| 1982 ], | 1983 ], |
| 1983 'testing': { | 1984 'testing': { |
| 1984 'platform': 'linux', | 1985 'platform': 'linux', |
| 1985 }, | 1986 }, |
| 1986 }, | 1987 }, |
| 1987 }, | 1988 }, |
| 1988 } | 1989 } |
| OLD | NEW |