| 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 import time | 
|     6  |     7  | 
|     7 RESULTS_URL = 'https://chromeperf.appspot.com' |     8 RESULTS_URL = 'https://chromeperf.appspot.com' | 
|     8  |     9  | 
|     9  |    10  | 
|    10 KITCHEN_TEST_SPEC = { |    11 KITCHEN_TEST_SPEC = { | 
|    11   'chromium_config': 'chromium', |    12   'chromium_config': 'chromium', | 
|    12   'chromium_apply_config': [ |    13   'chromium_apply_config': [ | 
|    13     'mb', |    14     'mb', | 
|    14     'ninja_confirm_noop', |    15     'ninja_confirm_noop', | 
|    15     'archive_gpu_tests', |    16     'archive_gpu_tests', | 
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   179           '--additional-driver-flag', |   180           '--additional-driver-flag', | 
|   180           '--enable-blink-features=TraceWrappables', |   181           '--enable-blink-features=TraceWrappables', | 
|   181         ]), |   182         ]), | 
|   182       ], |   183       ], | 
|   183       'testing': { |   184       'testing': { | 
|   184         'platform': 'linux', |   185         'platform': 'linux', | 
|   185       }, |   186       }, | 
|   186       'enable_swarming': True, |   187       'enable_swarming': True, | 
|   187       'use_isolate': True, |   188       'use_isolate': True, | 
|   188     }, |   189     }, | 
 |   190     'WebKit Linux - RandomOrder':{ | 
 |   191       'chromium_config': 'chromium', | 
 |   192       'chromium_apply_config': ['mb','ninja_confirm_noop'], | 
 |   193       'gclient_config': 'chromium', | 
 |   194       'chromium_config_kwargs': { | 
 |   195         'BUILD_CONFIG': 'Release', | 
 |   196         'TARGET_BITS': 64, | 
 |   197       }, | 
 |   198       'compile_targets': [ | 
 |   199         'blink_tests', | 
 |   200       ], | 
 |   201       'tests': [ | 
 |   202         steps.BlinkTest(extra_args=[ | 
 |   203           '--order=random', | 
 |   204         ]), | 
 |   205       ], | 
 |   206       'testing': { | 
 |   207           'platform': 'linux', | 
 |   208       }, | 
 |   209       'enable_swarming': True, | 
 |   210       'use_isolate': True, | 
 |   211     }, | 
|   189     'WebKit Mac - WPTServe':{ |   212     'WebKit Mac - WPTServe':{ | 
|   190       'chromium_config': 'chromium', |   213       'chromium_config': 'chromium', | 
|   191       'chromium_apply_config': ['mb','ninja_confirm_noop'], |   214       'chromium_apply_config': ['mb','ninja_confirm_noop'], | 
|   192       'gclient_config': 'chromium', |   215       'gclient_config': 'chromium', | 
|   193       'chromium_config_kwargs': { |   216       'chromium_config_kwargs': { | 
|   194         'BUILD_CONFIG': 'Release', |   217         'BUILD_CONFIG': 'Release', | 
|   195         'TARGET_BITS': 64, |   218         'TARGET_BITS': 64, | 
|   196       }, |   219       }, | 
|   197       'compile_targets': [ |   220       'compile_targets': [ | 
|   198         'blink_tests', |   221         'blink_tests', | 
| (...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2057         'TARGET_PLATFORM': 'win', |  2080         'TARGET_PLATFORM': 'win', | 
|  2058         'TARGET_BITS': 32, |  2081         'TARGET_BITS': 32, | 
|  2059       }, |  2082       }, | 
|  2060       'bot_type': 'builder_tester', |  2083       'bot_type': 'builder_tester', | 
|  2061       'testing': { 'platform': 'win', }, |  2084       'testing': { 'platform': 'win', }, | 
|  2062       'use_isolate': True, |  2085       'use_isolate': True, | 
|  2063       'enable_swarming': True, |  2086       'enable_swarming': True, | 
|  2064     }, |  2087     }, | 
|  2065   }, |  2088   }, | 
|  2066 } |  2089 } | 
| OLD | NEW |