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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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') | 168 p['v8'] = ('src/v8', 'HEAD') |
169 p['buildtools'] = ('src/buildtools', 'HEAD') | 169 p['buildtools'] = ('src/buildtools', 'HEAD') |
170 p['angle/angle'] = ('src/third_party/angle', None) | 170 p['angle/angle'] = ('src/third_party/angle', None) |
171 p['blink'] = ('src/third_party/WebKit', None) | 171 p['blink'] = ('src/third_party/WebKit', None) |
172 p['pdfium'] = ('src/third_party/pdfium', 'HEAD') | 172 p['pdfium'] = ('src/third_party/pdfium', 'HEAD') |
173 p['skia'] = ('src/third_party/skia', 'HEAD') | 173 p['skia'] = ('src/third_party/skia', 'HEAD') |
174 p['flac'] = ('src/third_party/flac', 'HEAD') | 174 p['flac'] = ('src/third_party/flac', 'HEAD') |
175 p['webrtc'] = ('src/third_party/webrtc', 'HEAD') | |
tandrii(chromium)
2016/05/16 07:37:29
based on this code https://chromium.googlesource.c
kjellander_chromium
2016/05/16 08:24:48
Chatted offline. It seems you're right: I created
| |
175 | 176 |
176 @config_ctx(includes=['chromium_bare']) | 177 @config_ctx(includes=['chromium_bare']) |
177 def chromium_empty(c): | 178 def chromium_empty(c): |
178 c.solutions[0].deps_file = '' # pragma: no cover | 179 c.solutions[0].deps_file = '' # pragma: no cover |
179 | 180 |
180 @config_ctx(includes=['chromium_bare']) | 181 @config_ctx(includes=['chromium_bare']) |
181 def chromium(c): | 182 def chromium(c): |
182 s = c.solutions[0] | 183 s = c.solutions[0] |
183 s.custom_deps = mirror_only(c, {}) | 184 s.custom_deps = mirror_only(c, {}) |
184 | 185 |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
663 soln = c.solutions.add() | 664 soln = c.solutions.add() |
664 soln.name = 'gerrit-test-cq-normal' | 665 soln.name = 'gerrit-test-cq-normal' |
665 soln.url = 'https://chromium.googlesource.com/playground/gerrit-cq/normal.git' | 666 soln.url = 'https://chromium.googlesource.com/playground/gerrit-cq/normal.git' |
666 | 667 |
667 # TODO(phajdan.jr): Move to proper repo and add coverage. | 668 # TODO(phajdan.jr): Move to proper repo and add coverage. |
668 @config_ctx() | 669 @config_ctx() |
669 def valgrind(c): # pragma: no cover | 670 def valgrind(c): # pragma: no cover |
670 """Add Valgrind binaries to the gclient solution.""" | 671 """Add Valgrind binaries to the gclient solution.""" |
671 c.solutions[0].custom_deps['src/third_party/valgrind'] = \ | 672 c.solutions[0].custom_deps['src/third_party/valgrind'] = \ |
672 ChromiumGitURL(c, 'chromium', 'deps', 'valgrind', 'binaries') | 673 ChromiumGitURL(c, 'chromium', 'deps', 'valgrind', 'binaries') |
OLD | NEW |