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, BadConf | 7 from recipe_engine.config import config_item_context, ConfigGroup, BadConf |
8 from recipe_engine.config import ConfigList, Dict, Single, Static, Set, List | 8 from recipe_engine.config import ConfigList, Dict, Single, Static, Set, List |
9 | 9 |
10 from . import api as gclient_api | 10 from . import api as gclient_api |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 | 158 |
159 p = c.parent_got_revision_mapping | 159 p = c.parent_got_revision_mapping |
160 p['parent_got_revision'] = None | 160 p['parent_got_revision'] = None |
161 p['parent_got_angle_revision'] = 'angle_revision' | 161 p['parent_got_angle_revision'] = 'angle_revision' |
162 p['parent_got_nacl_revision'] = 'nacl_revision' | 162 p['parent_got_nacl_revision'] = 'nacl_revision' |
163 p['parent_got_swarming_client_revision'] = 'swarming_revision' | 163 p['parent_got_swarming_client_revision'] = 'swarming_revision' |
164 p['parent_got_v8_revision'] = 'v8_revision' | 164 p['parent_got_v8_revision'] = 'v8_revision' |
165 p['parent_got_webrtc_revision'] = 'webrtc_revision' | 165 p['parent_got_webrtc_revision'] = 'webrtc_revision' |
166 | 166 |
167 p = c.patch_projects | 167 p = c.patch_projects |
168 p['v8'] = ('src/v8', 'HEAD') | |
169 p['buildtools'] = ('src/buildtools', 'HEAD') | |
170 p['angle/angle'] = ('src/third_party/angle', None) | 168 p['angle/angle'] = ('src/third_party/angle', None) |
171 p['blink'] = ('src/third_party/WebKit', None) | 169 p['blink'] = ('src/third_party/WebKit', None) |
| 170 p['buildtools'] = ('src/buildtools', 'HEAD') |
172 p['catapult'] = ('src/third_party/catapult', 'HEAD') | 171 p['catapult'] = ('src/third_party/catapult', 'HEAD') |
| 172 p['flac'] = ('src/third_party/flac', 'HEAD') |
| 173 p['icu'] = ('src/third_party/icu', 'HEAD') |
173 p['pdfium'] = ('src/third_party/pdfium', 'HEAD') | 174 p['pdfium'] = ('src/third_party/pdfium', 'HEAD') |
174 p['skia'] = ('src/third_party/skia', 'HEAD') | 175 p['skia'] = ('src/third_party/skia', 'HEAD') |
175 p['flac'] = ('src/third_party/flac', 'HEAD') | 176 p['v8'] = ('src/v8', 'HEAD') |
176 p['webrtc'] = ('src/third_party/webrtc', 'HEAD') | 177 p['webrtc'] = ('src/third_party/webrtc', 'HEAD') |
177 | 178 |
178 @config_ctx(includes=['chromium_bare']) | 179 @config_ctx(includes=['chromium_bare']) |
179 def chromium_empty(c): | 180 def chromium_empty(c): |
180 c.solutions[0].deps_file = '' # pragma: no cover | 181 c.solutions[0].deps_file = '' # pragma: no cover |
181 | 182 |
182 @config_ctx(includes=['chromium_bare']) | 183 @config_ctx(includes=['chromium_bare']) |
183 def chromium(c): | 184 def chromium(c): |
184 s = c.solutions[0] | 185 s = c.solutions[0] |
185 s.custom_deps = mirror_only(c, {}) | 186 s.custom_deps = mirror_only(c, {}) |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 """Add Valgrind binaries to the gclient solution.""" | 683 """Add Valgrind binaries to the gclient solution.""" |
683 c.solutions[0].custom_deps['src/third_party/valgrind'] = \ | 684 c.solutions[0].custom_deps['src/third_party/valgrind'] = \ |
684 ChromiumGitURL(c, 'chromium', 'deps', 'valgrind', 'binaries') | 685 ChromiumGitURL(c, 'chromium', 'deps', 'valgrind', 'binaries') |
685 | 686 |
686 @config_ctx(includes=['chromium']) | 687 @config_ctx(includes=['chromium']) |
687 def chromedriver(c): | 688 def chromedriver(c): |
688 """Add Selenium Java tests to the gclient solution.""" | 689 """Add Selenium Java tests to the gclient solution.""" |
689 c.solutions[0].custom_deps[ | 690 c.solutions[0].custom_deps[ |
690 'src/chrome/test/chromedriver/third_party/java_tests'] = ( | 691 'src/chrome/test/chromedriver/third_party/java_tests'] = ( |
691 ChromiumGitURL(c, 'chromium', 'deps', 'webdriver')) | 692 ChromiumGitURL(c, 'chromium', 'deps', 'webdriver')) |
OLD | NEW |