| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 @config_ctx() | 72 @config_ctx() |
| 73 def clang_builder_mb(c): | 73 def clang_builder_mb(c): |
| 74 pass | 74 pass |
| 75 | 75 |
| 76 @config_ctx(config_vars={'BUILD_CONFIG': 'Release'}) | 76 @config_ctx(config_vars={'BUILD_CONFIG': 'Release'}) |
| 77 def clang_asan_tot_release_builder(c): # pragma: no cover | 77 def clang_asan_tot_release_builder(c): # pragma: no cover |
| 78 c.asan_symbolize = True | 78 c.asan_symbolize = True |
| 79 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' | 79 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' |
| 80 | 80 |
| 81 @config_ctx(config_vars={'BUILD_CONFIG': 'Debug'}) |
| 82 def clang_tot_debug_builder(c): # pragma: no cover |
| 83 c.env.LLVM_FORCE_HEAD_REVISION = 'YES' |
| 84 |
| 81 @config_ctx() | 85 @config_ctx() |
| 82 def x86_base(c): | 86 def x86_base(c): |
| 83 pass | 87 pass |
| 84 | 88 |
| 85 @config_ctx(includes=['x86_base']) | 89 @config_ctx(includes=['x86_base']) |
| 86 def x86_builder(c): | 90 def x86_builder(c): |
| 87 pass | 91 pass |
| 88 | 92 |
| 89 @config_ctx(includes=['x86_builder']) | 93 @config_ctx(includes=['x86_builder']) |
| 90 def x86_builder_mb(c): | 94 def x86_builder_mb(c): |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 def incremental_coverage_builder_tests(c): | 221 def incremental_coverage_builder_tests(c): |
| 218 c.incremental_coverage = True | 222 c.incremental_coverage = True |
| 219 | 223 |
| 220 @config_ctx() | 224 @config_ctx() |
| 221 def chromium_perf(c): | 225 def chromium_perf(c): |
| 222 pass | 226 pass |
| 223 | 227 |
| 224 @config_ctx() | 228 @config_ctx() |
| 225 def cast_builder(c): | 229 def cast_builder(c): |
| 226 pass | 230 pass |
| OLD | NEW |