| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 DEPS = [ | 5 DEPS = [ |
| 6 'archive', | 6 'archive', |
| 7 'bot_update', | 7 'bot_update', |
| 8 'chromium', | 8 'chromium', |
| 9 'chromium_android', | 9 'chromium_android', |
| 10 'gclient', | 10 'gclient', |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 'recipe_config': 'chromium', | 479 'recipe_config': 'chromium', |
| 480 'testing': {'platform': 'linux'}, | 480 'testing': {'platform': 'linux'}, |
| 481 }, | 481 }, |
| 482 'LinuxGit x64': { | 482 'LinuxGit x64': { |
| 483 'recipe_config': 'chromium', | 483 'recipe_config': 'chromium', |
| 484 'testing': {'platform': 'linux'}, | 484 'testing': {'platform': 'linux'}, |
| 485 }, | 485 }, |
| 486 } | 486 } |
| 487 }, | 487 }, |
| 488 'chromium.fyi': { | 488 'chromium.fyi': { |
| 489 'settings': { |
| 490 'build_gs_bucket': 'chromium-fyi-archive', |
| 491 }, |
| 489 'builders': { | 492 'builders': { |
| 490 'Linux ARM Cross-Compile': { | 493 'Linux ARM Cross-Compile': { |
| 491 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . | 494 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . |
| 492 'recipe_config': 'chromium_no_goma', | 495 'recipe_config': 'chromium_no_goma', |
| 493 'GYP_DEFINES': { | 496 'GYP_DEFINES': { |
| 494 'target_arch': 'arm', | 497 'target_arch': 'arm', |
| 495 'arm_float_abi': 'hard', | 498 'arm_float_abi': 'hard', |
| 496 'test_isolation_mode': 'archive', | 499 'test_isolation_mode': 'archive', |
| 497 }, | 500 }, |
| 498 'chromium_config': 'chromium', | 501 'chromium_config': 'chromium', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 'TARGET_BITS': 64, | 613 'TARGET_BITS': 64, |
| 611 }, | 614 }, |
| 612 'bot_type': 'builder_tester', | 615 'bot_type': 'builder_tester', |
| 613 'tests': [ | 616 'tests': [ |
| 614 DynamicGTestTests('Chromium Linux MSan'), | 617 DynamicGTestTests('Chromium Linux MSan'), |
| 615 ], | 618 ], |
| 616 'testing': { | 619 'testing': { |
| 617 'platform': 'linux', | 620 'platform': 'linux', |
| 618 }, | 621 }, |
| 619 }, | 622 }, |
| 623 'Chromium Linux MSan (browser tests)': { |
| 624 'recipe_config': 'chromium_clang', |
| 625 'chromium_config_kwargs': { |
| 626 'BUILD_CONFIG': 'Release', |
| 627 'TARGET_BITS': 64, |
| 628 }, |
| 629 'bot_type': 'tester', |
| 630 'tests': [ |
| 631 DynamicGTestTests('Chromium Linux MSan'), |
| 632 ], |
| 633 'parent_buildername': 'Chromium Linux MSan', |
| 634 'testing': { |
| 635 'platform': 'linux', |
| 636 }, |
| 637 }, |
| 620 }, | 638 }, |
| 621 }, | 639 }, |
| 622 'chromium.linux': { | 640 'chromium.linux': { |
| 623 'settings': { | 641 'settings': { |
| 624 'build_gs_bucket': 'chromium-linux-archive', | 642 'build_gs_bucket': 'chromium-linux-archive', |
| 625 }, | 643 }, |
| 626 'builders': { | 644 'builders': { |
| 627 'Linux Builder': { | 645 'Linux Builder': { |
| 628 'recipe_config': 'chromium', | 646 'recipe_config': 'chromium', |
| 629 'chromium_config_kwargs': { | 647 'chromium_config_kwargs': { |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1869 })) | 1887 })) |
| 1870 ) | 1888 ) |
| 1871 | 1889 |
| 1872 yield ( | 1890 yield ( |
| 1873 api.test('findbugs_failure') + | 1891 api.test('findbugs_failure') + |
| 1874 api.properties.generic(mastername='chromium.linux', | 1892 api.properties.generic(mastername='chromium.linux', |
| 1875 buildername='Android Builder (dbg)') + | 1893 buildername='Android Builder (dbg)') + |
| 1876 api.platform('linux', 32) + | 1894 api.platform('linux', 32) + |
| 1877 api.step_data('findbugs', retcode=1) | 1895 api.step_data('findbugs', retcode=1) |
| 1878 ) | 1896 ) |
| OLD | NEW |