| 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 import types | 5 import types |
| 6 | 6 |
| 7 from recipe_engine.config import config_item_context, ConfigGroup | 7 from recipe_engine.config import config_item_context, ConfigGroup |
| 8 from recipe_engine.config import ConfigList, Dict, List, Single, Static | 8 from recipe_engine.config import ConfigList, Dict, List, Single, Static |
| 9 from recipe_engine.config_types import Path | 9 from recipe_engine.config_types import Path |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 @config_ctx(config_vars={'BUILD_CONFIG': 'Release'}) | 78 @config_ctx(config_vars={'BUILD_CONFIG': 'Release'}) |
| 79 def clang_asan_tot_release_builder(c): # pragma: no cover | 79 def clang_asan_tot_release_builder(c): # pragma: no cover |
| 80 c.asan_symbolize = True | 80 c.asan_symbolize = True |
| 81 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' | 81 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' |
| 82 | 82 |
| 83 @config_ctx(config_vars={'BUILD_CONFIG': 'Debug'}) | 83 @config_ctx(config_vars={'BUILD_CONFIG': 'Debug'}) |
| 84 def clang_tot_debug_builder(c): # pragma: no cover | 84 def clang_tot_debug_builder(c): # pragma: no cover |
| 85 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' | 85 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' |
| 86 | 86 |
| 87 @config_ctx(includes=['x64_builder_mb']) |
| 88 def clang_builder_mb_x64(c): |
| 89 pass |
| 90 |
| 87 @config_ctx() | 91 @config_ctx() |
| 88 def x86_base(c): | 92 def x86_base(c): |
| 89 pass | 93 pass |
| 90 | 94 |
| 91 @config_ctx(includes=['x86_base']) | 95 @config_ctx(includes=['x86_base']) |
| 92 def x86_builder(c): | 96 def x86_builder(c): |
| 93 pass | 97 pass |
| 94 | 98 |
| 95 @config_ctx(includes=['x86_builder']) | 99 @config_ctx(includes=['x86_builder']) |
| 96 def x86_builder_mb(c): | 100 def x86_builder_mb(c): |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 def cast_builder(c): | 235 def cast_builder(c): |
| 232 pass | 236 pass |
| 233 | 237 |
| 234 @config_ctx() | 238 @config_ctx() |
| 235 def restart_usb(c): | 239 def restart_usb(c): |
| 236 c.restart_usb = True | 240 c.restart_usb = True |
| 237 | 241 |
| 238 @config_ctx() | 242 @config_ctx() |
| 239 def use_devil_adb(c): | 243 def use_devil_adb(c): |
| 240 c.use_devil_adb = True | 244 c.use_devil_adb = True |
| OLD | NEW |