| 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-mac-archive', | 9 'build_gs_bucket': 'chromium-mac-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| 11 # Usage not covered by chromium CQ is not supported and can break | 11 # Usage not covered by chromium CQ is not supported and can break |
| 12 # without notice. | 12 # without notice. |
| 13 'src_side_runtest_py': True, | 13 'src_side_runtest_py': True, |
| 14 }, | 14 }, |
| 15 'builders': { | 15 'builders': { |
| 16 'Mac Builder': { | 16 'Mac Builder': { |
| 17 'chromium_config': 'chromium', | 17 'chromium_config': 'chromium', |
| 18 'chromium_apply_config': ['ninja_confirm_noop'], | 18 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], |
| 19 'gclient_config': 'chromium', | 19 'gclient_config': 'chromium', |
| 20 'chromium_config_kwargs': { | 20 'chromium_config_kwargs': { |
| 21 'BUILD_CONFIG': 'Release', | 21 'BUILD_CONFIG': 'Release', |
| 22 'TARGET_BITS': 64, | 22 'TARGET_BITS': 64, |
| 23 }, | 23 }, |
| 24 'bot_type': 'builder', | 24 'bot_type': 'builder', |
| 25 'compile_targets': [ | 25 'compile_targets': [ |
| 26 'chromium_builder_tests', | 26 'chromium_builder_tests', |
| 27 ], | 27 ], |
| 28 'testing': { | 28 'testing': { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 steps.generate_gtest, | 127 steps.generate_gtest, |
| 128 steps.generate_script, | 128 steps.generate_script, |
| 129 ], | 129 ], |
| 130 'enable_swarming': True, | 130 'enable_swarming': True, |
| 131 'testing': { | 131 'testing': { |
| 132 'platform': 'mac', | 132 'platform': 'mac', |
| 133 }, | 133 }, |
| 134 }, | 134 }, |
| 135 'Mac Builder (dbg)': { | 135 'Mac Builder (dbg)': { |
| 136 'chromium_config': 'chromium', | 136 'chromium_config': 'chromium', |
| 137 'chromium_apply_config': ['ninja_confirm_noop'], | 137 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], |
| 138 'gclient_config': 'chromium', | 138 'gclient_config': 'chromium', |
| 139 'chromium_config_kwargs': { | 139 'chromium_config_kwargs': { |
| 140 'BUILD_CONFIG': 'Debug', | 140 'BUILD_CONFIG': 'Debug', |
| 141 'TARGET_BITS': 64, | 141 'TARGET_BITS': 64, |
| 142 }, | 142 }, |
| 143 'bot_type': 'builder', | 143 'bot_type': 'builder', |
| 144 'compile_targets': [ | 144 'compile_targets': [ |
| 145 'chromium_builder_tests', | 145 'chromium_builder_tests', |
| 146 ], | 146 ], |
| 147 'testing': { | 147 'testing': { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 steps.generate_gtest, | 184 steps.generate_gtest, |
| 185 steps.generate_script, | 185 steps.generate_script, |
| 186 ], | 186 ], |
| 187 'enable_swarming': True, | 187 'enable_swarming': True, |
| 188 'testing': { | 188 'testing': { |
| 189 'platform': 'mac', | 189 'platform': 'mac', |
| 190 }, | 190 }, |
| 191 }, | 191 }, |
| 192 }, | 192 }, |
| 193 } | 193 } |
| OLD | NEW |