| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 'testing': { | 564 'testing': { |
| 565 'platform': 'win', | 565 'platform': 'win', |
| 566 }, | 566 }, |
| 567 'enable_swarming': True, | 567 'enable_swarming': True, |
| 568 }, | 568 }, |
| 569 'CrWinClangLLD': { | 569 'CrWinClangLLD': { |
| 570 'chromium_config': 'chromium_win_clang_tot', | 570 'chromium_config': 'chromium_win_clang_tot', |
| 571 'gclient_config': 'chromium', | 571 'gclient_config': 'chromium', |
| 572 'chromium_config_kwargs': { | 572 'chromium_config_kwargs': { |
| 573 'BUILD_CONFIG': 'Release', | 573 'BUILD_CONFIG': 'Release', |
| 574 'TARGET_BITS': 32, | 574 'TARGET_BITS': 64, |
| 575 }, | 575 }, |
| 576 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 }, | 576 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 }, |
| 577 'bot_type': 'builder', | 577 'bot_type': 'builder', |
| 578 'testing': { | 578 'testing': { |
| 579 'platform': 'win', | 579 'platform': 'win', |
| 580 }, | 580 }, |
| 581 'use_isolate': True, | 581 'use_isolate': True, |
| 582 'enable_swarming': True, | 582 'enable_swarming': True, |
| 583 # Workaround so that recipes doesn't add random build targets to our | 583 # Workaround so that recipes doesn't add random build targets to our |
| 584 # compile line. We want to build everything. | 584 # compile line. We want to build everything. |
| 585 'add_tests_as_compile_targets': False, | 585 'add_tests_as_compile_targets': False, |
| 586 }, | 586 }, |
| 587 'CrWinClangLLD tester': { | 587 'CrWinClangLLD tester': { |
| 588 'chromium_config': 'chromium_no_goma', | 588 'chromium_config': 'chromium_no_goma', |
| 589 'gclient_config': 'chromium', | 589 'gclient_config': 'chromium', |
| 590 'chromium_config_kwargs': { | 590 'chromium_config_kwargs': { |
| 591 'BUILD_CONFIG': 'Release', | 591 'BUILD_CONFIG': 'Release', |
| 592 'TARGET_BITS': 32, | 592 'TARGET_BITS': 64, |
| 593 }, | 593 }, |
| 594 'test_generators': [ | 594 'test_generators': [ |
| 595 steps.generate_gtest, | 595 steps.generate_gtest, |
| 596 ], | 596 ], |
| 597 'bot_type': 'tester', | 597 'bot_type': 'tester', |
| 598 'parent_buildername': 'CrWinClangLLD', | 598 'parent_buildername': 'CrWinClangLLD', |
| 599 'testing': { | 599 'testing': { |
| 600 'platform': 'win', | 600 'platform': 'win', |
| 601 }, | 601 }, |
| 602 'enable_swarming': True, | 602 'enable_swarming': True, |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1527 'test_generators': [ | 1527 'test_generators': [ |
| 1528 steps.generate_gtest, | 1528 steps.generate_gtest, |
| 1529 steps.generate_script, | 1529 steps.generate_script, |
| 1530 ], | 1530 ], |
| 1531 'testing': { | 1531 'testing': { |
| 1532 'platform': 'linux', | 1532 'platform': 'linux', |
| 1533 }, | 1533 }, |
| 1534 }, | 1534 }, |
| 1535 }, | 1535 }, |
| 1536 } | 1536 } |
| OLD | NEW |