| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 'test_generators': [ | 244 'test_generators': [ |
| 245 steps.generate_gtest, | 245 steps.generate_gtest, |
| 246 steps.generate_script, | 246 steps.generate_script, |
| 247 steps.generate_isolated_script, | 247 steps.generate_isolated_script, |
| 248 ], | 248 ], |
| 249 'bot_type': 'builder_tester', | 249 'bot_type': 'builder_tester', |
| 250 'testing': { | 250 'testing': { |
| 251 'platform': 'linux', | 251 'platform': 'linux', |
| 252 }, | 252 }, |
| 253 }, | 253 }, |
| 254 'CFI Linux ToT': { |
| 255 'chromium_config': 'chromium_cfi', |
| 256 'chromium_apply_config': ['clang_tot'], |
| 257 'gclient_config': 'chromium', |
| 258 'chromium_config_kwargs': { |
| 259 'BUILD_CONFIG': 'Release', |
| 260 'TARGET_BITS': 64, |
| 261 }, |
| 262 'test_generators': [ |
| 263 steps.generate_gtest, |
| 264 steps.generate_script, |
| 265 steps.generate_isolated_script, |
| 266 ], |
| 267 'bot_type': 'builder_tester', |
| 268 'testing': { |
| 269 'platform': 'linux', |
| 270 }, |
| 271 }, |
| 254 'Mac OpenSSL': { | 272 'Mac OpenSSL': { |
| 255 'chromium_config': 'chromium', | 273 'chromium_config': 'chromium', |
| 256 'gclient_config': 'chromium', | 274 'gclient_config': 'chromium', |
| 257 'chromium_config_kwargs': { | 275 'chromium_config_kwargs': { |
| 258 'BUILD_CONFIG': 'Release', | 276 'BUILD_CONFIG': 'Release', |
| 259 'TARGET_BITS': 32, | 277 'TARGET_BITS': 32, |
| 260 }, | 278 }, |
| 261 'GYP_DEFINES': { | 279 'GYP_DEFINES': { |
| 262 'use_openssl': '1', | 280 'use_openssl': '1', |
| 263 }, | 281 }, |
| (...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1891 steps.generate_gtest, | 1909 steps.generate_gtest, |
| 1892 steps.generate_script, | 1910 steps.generate_script, |
| 1893 steps.generate_isolated_script, | 1911 steps.generate_isolated_script, |
| 1894 ], | 1912 ], |
| 1895 'testing': { | 1913 'testing': { |
| 1896 'platform': 'linux', | 1914 'platform': 'linux', |
| 1897 }, | 1915 }, |
| 1898 }, | 1916 }, |
| 1899 }, | 1917 }, |
| 1900 } | 1918 } |
| OLD | NEW |