| 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 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-fyi-archive', | 9 'build_gs_bucket': 'chromium-fyi-archive', |
| 10 }, | 10 }, |
| (...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 'add_tests_as_compile_targets': False, | 766 'add_tests_as_compile_targets': False, |
| 767 }, | 767 }, |
| 768 'Linux Builder (clobber)': { | 768 'Linux Builder (clobber)': { |
| 769 'recipe_config': 'chromium', | 769 'recipe_config': 'chromium', |
| 770 'chromium_apply_config': ['clobber'], | 770 'chromium_apply_config': ['clobber'], |
| 771 'chromium_config_kwargs': { | 771 'chromium_config_kwargs': { |
| 772 'BUILD_CONFIG': 'Release', | 772 'BUILD_CONFIG': 'Release', |
| 773 'TARGET_BITS': 64, | 773 'TARGET_BITS': 64, |
| 774 }, | 774 }, |
| 775 'compile_targets': [ | 775 'compile_targets': [ |
| 776 'chromium_swarm_tests', | 776 # chromium_tests.analyze treats "all" compile target in a special way; |
| 777 # Make sure to trigger it to make sure we respect compile targets |
| 778 # returned by gyp analyzer. |
| 779 'all', |
| 777 ], | 780 ], |
| 778 'testing': { | 781 'testing': { |
| 779 'platform': 'linux', | 782 'platform': 'linux', |
| 780 }, | 783 }, |
| 781 }, | 784 }, |
| 782 }, | 785 }, |
| 783 } | 786 } |
| OLD | NEW |