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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 ], | 514 ], |
515 'test_generators': [ | 515 'test_generators': [ |
516 steps.generate_gtest, | 516 steps.generate_gtest, |
517 steps.generate_script, | 517 steps.generate_script, |
518 steps.generate_isolated_script, | 518 steps.generate_isolated_script, |
519 ], | 519 ], |
520 'checkout_dir': 'linux', | 520 'checkout_dir': 'linux', |
521 'testing': { | 521 'testing': { |
522 'platform': 'linux', | 522 'platform': 'linux', |
523 }, | 523 }, |
| 524 'use_isolate': True, |
| 525 'enable_swarming': True, |
524 }, | 526 }, |
525 'Site Isolation Win': { | 527 'Site Isolation Win': { |
526 'chromium_config': 'chromium', | 528 'chromium_config': 'chromium', |
527 'chromium_apply_config': ['mb'], | 529 'chromium_apply_config': ['mb'], |
528 'gclient_config': 'chromium', | 530 'gclient_config': 'chromium', |
529 'chromium_config_kwargs': { | 531 'chromium_config_kwargs': { |
530 'BUILD_CONFIG': 'Release', | 532 'BUILD_CONFIG': 'Release', |
531 'TARGET_PLATFORM': 'win', | 533 'TARGET_PLATFORM': 'win', |
532 'TARGET_BITS': 32, | 534 'TARGET_BITS': 32, |
533 }, | 535 }, |
(...skipping 14 matching lines...) Expand all Loading... |
548 ]), | 550 ]), |
549 ], | 551 ], |
550 'test_generators': [ | 552 'test_generators': [ |
551 steps.generate_gtest, | 553 steps.generate_gtest, |
552 steps.generate_script, | 554 steps.generate_script, |
553 steps.generate_isolated_script, | 555 steps.generate_isolated_script, |
554 ], | 556 ], |
555 'testing': { | 557 'testing': { |
556 'platform': 'win', | 558 'platform': 'win', |
557 }, | 559 }, |
| 560 'use_isolate': True, |
| 561 'enable_swarming': True, |
558 }, | 562 }, |
559 'Browser Side Navigation Linux': { | 563 'Browser Side Navigation Linux': { |
560 'chromium_config': 'chromium', | 564 'chromium_config': 'chromium', |
561 'chromium_apply_config': ['mb'], | 565 'chromium_apply_config': ['mb'], |
562 'gclient_config': 'chromium', | 566 'gclient_config': 'chromium', |
563 'chromium_config_kwargs': { | 567 'chromium_config_kwargs': { |
564 'BUILD_CONFIG': 'Release', | 568 'BUILD_CONFIG': 'Release', |
565 'TARGET_BITS': 64, | 569 'TARGET_BITS': 64, |
566 }, | 570 }, |
567 'bot_type': 'builder_tester', | 571 'bot_type': 'builder_tester', |
568 'compile_targets': [ | 572 'compile_targets': [ |
569 'content_unittests', | 573 'content_unittests', |
570 'content_browsertests', | 574 'content_browsertests', |
571 ], | 575 ], |
572 'tests': [ | 576 'tests': [ |
573 steps.BlinkTest(["--additional-driver-flag=--enable-browser-side-navigat
ion"]), | 577 steps.BlinkTest(["--additional-driver-flag=--enable-browser-side-navigat
ion"]), |
574 ], | 578 ], |
575 'test_generators': [ | 579 'test_generators': [ |
576 steps.generate_gtest, | 580 steps.generate_gtest, |
577 steps.generate_script, | 581 steps.generate_script, |
578 steps.generate_isolated_script, | 582 steps.generate_isolated_script, |
579 ], | 583 ], |
580 'testing': { | 584 'testing': { |
581 'platform': 'linux', | 585 'platform': 'linux', |
582 }, | 586 }, |
| 587 'use_isolate': True, |
| 588 'enable_swarming': True, |
583 }, | 589 }, |
584 'CrWinClang': { | 590 'CrWinClang': { |
585 'chromium_config': 'chromium_win_clang_official', | 591 'chromium_config': 'chromium_win_clang_official', |
586 'gclient_config': 'chromium', | 592 'gclient_config': 'chromium', |
587 'gclient_apply_config': ['chrome_internal'], | 593 'gclient_apply_config': ['chrome_internal'], |
588 'chromium_apply_config': ['mb'], | 594 'chromium_apply_config': ['mb'], |
589 'chromium_config_kwargs': { | 595 'chromium_config_kwargs': { |
590 'BUILD_CONFIG': 'Release', | 596 'BUILD_CONFIG': 'Release', |
591 'TARGET_BITS': 32, | 597 'TARGET_BITS': 32, |
592 }, | 598 }, |
(...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2220 steps.generate_gtest, | 2226 steps.generate_gtest, |
2221 steps.generate_script, | 2227 steps.generate_script, |
2222 steps.generate_isolated_script, | 2228 steps.generate_isolated_script, |
2223 ], | 2229 ], |
2224 'testing': { 'platform': 'win', }, | 2230 'testing': { 'platform': 'win', }, |
2225 'use_isolate': True, | 2231 'use_isolate': True, |
2226 'enable_swarming': True, | 2232 'enable_swarming': True, |
2227 }, | 2233 }, |
2228 }, | 2234 }, |
2229 } | 2235 } |
OLD | NEW |