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