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 pass | 77 pass |
78 | 78 |
79 @config_ctx() | 79 @config_ctx() |
80 def x86_base(c): | 80 def x86_base(c): |
81 pass | 81 pass |
82 | 82 |
83 @config_ctx(includes=['x86_base']) | 83 @config_ctx(includes=['x86_base']) |
84 def x86_builder(c): | 84 def x86_builder(c): |
85 pass | 85 pass |
86 | 86 |
| 87 @config_ctx(includes=['x86_builder']) |
| 88 def x86_builder_mb(c): |
| 89 pass |
| 90 |
87 @config_ctx() | 91 @config_ctx() |
88 def mipsel_base(c): | 92 def mipsel_base(c): |
89 pass | 93 pass |
90 | 94 |
91 @config_ctx(includes=['mipsel_base']) | 95 @config_ctx(includes=['mipsel_base']) |
92 def mipsel_builder(c): | 96 def mipsel_builder(c): |
93 pass | 97 pass |
94 | 98 |
| 99 @config_ctx(includes=['mipsel_base']) |
| 100 def mipsel_builder_mb(c): |
| 101 pass |
| 102 |
95 @config_ctx(includes=['main_builder']) | 103 @config_ctx(includes=['main_builder']) |
96 def dartium_builder(c): # pragma: no cover | 104 def dartium_builder(c): # pragma: no cover |
97 c.get_app_manifest_vars = False | 105 c.get_app_manifest_vars = False |
98 c.run_tree_truth = False | 106 c.run_tree_truth = False |
99 if c.deps_dir != 'src/dart': | 107 if c.deps_dir != 'src/dart': |
100 c.deps_file = 'DEPS' | 108 c.deps_file = 'DEPS' |
101 else: | 109 else: |
102 c.deps_file = 'tools/deps/dartium.deps/DEPS' | 110 c.deps_file = 'tools/deps/dartium.deps/DEPS' |
103 c.managed = True | 111 c.managed = True |
104 | 112 |
105 @config_ctx() | 113 @config_ctx() |
106 def arm_l_builder(c): # pragma: no cover | 114 def arm_l_builder(c): # pragma: no cover |
107 pass | 115 pass |
108 | 116 |
109 @config_ctx() | 117 @config_ctx() |
110 def arm_l_builder_lto(c): # pragma: no cover | 118 def arm_l_builder_lto(c): # pragma: no cover |
111 pass | 119 pass |
112 | 120 |
113 @config_ctx() | 121 @config_ctx() |
114 def arm_l_builder_rel(c): # pragma: no cover | 122 def arm_l_builder_rel(c): # pragma: no cover |
115 pass | 123 pass |
116 | 124 |
117 @config_ctx() | 125 @config_ctx() |
118 def x64_base(c): | 126 def x64_base(c): |
119 pass | 127 pass |
120 | 128 |
121 @config_ctx(includes=['x64_base']) | 129 @config_ctx(includes=['x64_base']) |
122 def x64_builder(c): | 130 def x64_builder_mb(c): |
123 pass | 131 pass |
124 | 132 |
125 @config_ctx() | 133 @config_ctx() |
126 def arm64_builder(c): | 134 def arm64_builder(c): |
127 pass | 135 pass |
128 | 136 |
129 @config_ctx() | 137 @config_ctx() |
130 def arm64_builder_rel(c): # pragma: no cover | 138 def arm64_builder_rel(c): # pragma: no cover |
131 pass | 139 pass |
132 | 140 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 | 221 |
214 @config_ctx() | 222 @config_ctx() |
215 def cast_builder(c): | 223 def cast_builder(c): |
216 pass | 224 pass |
217 | 225 |
218 @config_ctx(includes=['x86_builder']) | 226 @config_ctx(includes=['x86_builder']) |
219 def gce_builder(c): | 227 def gce_builder(c): |
220 c.gce_setup = True | 228 c.gce_setup = True |
221 c.gce_snapshot = 'clean-19-l-phone-snapshot' | 229 c.gce_snapshot = 'clean-19-l-phone-snapshot' |
222 c.gce_count = 10 | 230 c.gce_count = 10 |
OLD | NEW |