| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 'src/third_party/WebKit/LayoutTests/FlagExpectations/site-per-process'
, | 521 'src/third_party/WebKit/LayoutTests/FlagExpectations/site-per-process'
, |
| 522 '--options', | 522 '--options', |
| 523 'http/tests', | 523 'http/tests', |
| 524 ]), | 524 ]), |
| 525 ], | 525 ], |
| 526 'test_generators': [ | 526 'test_generators': [ |
| 527 steps.generate_gtest, | 527 steps.generate_gtest, |
| 528 steps.generate_script, | 528 steps.generate_script, |
| 529 steps.generate_isolated_script, | 529 steps.generate_isolated_script, |
| 530 ], | 530 ], |
| 531 'checkout_dir': 'linux', |
| 531 'testing': { | 532 'testing': { |
| 532 'platform': 'linux', | 533 'platform': 'linux', |
| 533 }, | 534 }, |
| 534 }, | 535 }, |
| 535 'Site Isolation Win': { | 536 'Site Isolation Win': { |
| 536 'chromium_config': 'chromium', | 537 'chromium_config': 'chromium', |
| 537 'chromium_apply_config': ['mb'], | 538 'chromium_apply_config': ['mb'], |
| 538 'gclient_config': 'chromium', | 539 'gclient_config': 'chromium', |
| 539 'chromium_config_kwargs': { | 540 'chromium_config_kwargs': { |
| 540 'BUILD_CONFIG': 'Release', | 541 'BUILD_CONFIG': 'Release', |
| (...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2234 steps.generate_gtest, | 2235 steps.generate_gtest, |
| 2235 steps.generate_script, | 2236 steps.generate_script, |
| 2236 steps.generate_isolated_script, | 2237 steps.generate_isolated_script, |
| 2237 ], | 2238 ], |
| 2238 'testing': { 'platform': 'win', }, | 2239 'testing': { 'platform': 'win', }, |
| 2239 'use_isolate': True, | 2240 'use_isolate': True, |
| 2240 'enable_swarming': True, | 2241 'enable_swarming': True, |
| 2241 }, | 2242 }, |
| 2242 }, | 2243 }, |
| 2243 } | 2244 } |
| OLD | NEW |