| 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': ['chromium_mac_sdk_10_10'], |
| 18 'gclient_config': 'chromium', | 19 'gclient_config': 'chromium', |
| 19 'chromium_config_kwargs': { | 20 'chromium_config_kwargs': { |
| 20 'BUILD_CONFIG': 'Release', | 21 'BUILD_CONFIG': 'Release', |
| 21 'TARGET_BITS': 64, | 22 'TARGET_BITS': 64, |
| 22 }, | 23 }, |
| 23 'bot_type': 'builder', | 24 'bot_type': 'builder', |
| 24 'compile_targets': [ | 25 'compile_targets': [ |
| 25 'chromium_builder_tests', | 26 'chromium_builder_tests', |
| 26 ], | 27 ], |
| 27 'testing': { | 28 'testing': { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 steps.generate_gtest, | 123 steps.generate_gtest, |
| 123 steps.generate_script, | 124 steps.generate_script, |
| 124 ], | 125 ], |
| 125 'enable_swarming': True, | 126 'enable_swarming': True, |
| 126 'testing': { | 127 'testing': { |
| 127 'platform': 'mac', | 128 'platform': 'mac', |
| 128 }, | 129 }, |
| 129 }, | 130 }, |
| 130 'Mac Builder (dbg)': { | 131 'Mac Builder (dbg)': { |
| 131 'chromium_config': 'chromium', | 132 'chromium_config': 'chromium', |
| 133 'chromium_apply_config': ['chromium_mac_sdk_10_10'], |
| 132 'gclient_config': 'chromium', | 134 'gclient_config': 'chromium', |
| 133 'chromium_config_kwargs': { | 135 'chromium_config_kwargs': { |
| 134 'BUILD_CONFIG': 'Debug', | 136 'BUILD_CONFIG': 'Debug', |
| 135 'TARGET_BITS': 64, | 137 'TARGET_BITS': 64, |
| 136 }, | 138 }, |
| 137 'bot_type': 'builder', | 139 'bot_type': 'builder', |
| 138 'compile_targets': [ | 140 'compile_targets': [ |
| 139 'chromium_builder_tests', | 141 'chromium_builder_tests', |
| 140 ], | 142 ], |
| 141 'testing': { | 143 'testing': { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 steps.generate_gtest, | 179 steps.generate_gtest, |
| 178 steps.generate_script, | 180 steps.generate_script, |
| 179 ], | 181 ], |
| 180 'enable_swarming': True, | 182 'enable_swarming': True, |
| 181 'testing': { | 183 'testing': { |
| 182 'platform': 'mac', | 184 'platform': 'mac', |
| 183 }, | 185 }, |
| 184 }, | 186 }, |
| 185 }, | 187 }, |
| 186 } | 188 } |
| OLD | NEW |