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 DEPS | 5 import DEPS |
6 CONFIG_CTX = DEPS['gclient'].CONFIG_CTX | 6 CONFIG_CTX = DEPS['gclient'].CONFIG_CTX |
7 from recipe_engine.config import BadConf | 7 from recipe_engine.config import BadConf |
8 | 8 |
9 | 9 |
10 # TODO(machenbach): This is copied from gclient's config.py and should be | 10 # TODO(machenbach): This is copied from gclient's config.py and should be |
(...skipping 16 matching lines...) Expand all Loading... |
27 soln = c.solutions.add() | 27 soln = c.solutions.add() |
28 soln.name = 'v8' | 28 soln.name = 'v8' |
29 soln.url = 'https://chromium.googlesource.com/v8/v8' | 29 soln.url = 'https://chromium.googlesource.com/v8/v8' |
30 soln.custom_vars = {'chromium_trunk': ChromiumSvnTrunkURL(c)} | 30 soln.custom_vars = {'chromium_trunk': ChromiumSvnTrunkURL(c)} |
31 c.got_revision_mapping['v8'] = 'got_revision' | 31 c.got_revision_mapping['v8'] = 'got_revision' |
32 # Needed to get the testers to properly sync the right revision. | 32 # Needed to get the testers to properly sync the right revision. |
33 # TODO(infra): Upload full buildspecs for every build to isolate and then use | 33 # TODO(infra): Upload full buildspecs for every build to isolate and then use |
34 # them instead of this gclient garbage. | 34 # them instead of this gclient garbage. |
35 c.parent_got_revision_mapping['parent_got_revision'] = 'got_revision' | 35 c.parent_got_revision_mapping['parent_got_revision'] = 'got_revision' |
36 | 36 |
| 37 p = c.patch_projects |
| 38 p['icu'] = ('v8/third_party/icu', 'HEAD') |
| 39 |
37 | 40 |
38 @CONFIG_CTX(includes=['v8']) | 41 @CONFIG_CTX(includes=['v8']) |
39 def dynamorio(c): | 42 def dynamorio(c): |
40 soln = c.solutions.add() | 43 soln = c.solutions.add() |
41 soln.name = 'dynamorio' | 44 soln.name = 'dynamorio' |
42 soln.url = 'https://chromium.googlesource.com/external/dynamorio' | 45 soln.url = 'https://chromium.googlesource.com/external/dynamorio' |
43 | 46 |
44 | 47 |
45 @CONFIG_CTX(includes=['v8']) | 48 @CONFIG_CTX(includes=['v8']) |
46 def llvm_compiler_rt(c): | 49 def llvm_compiler_rt(c): |
(...skipping 13 matching lines...) Expand all Loading... |
60 soln.name = 'node.js' | 63 soln.name = 'node.js' |
61 soln.url = 'https://chromium.googlesource.com/external/github.com/v8/node' | 64 soln.url = 'https://chromium.googlesource.com/external/github.com/v8/node' |
62 soln.revision = 'vee-eight-lkgr:HEAD' | 65 soln.revision = 'vee-eight-lkgr:HEAD' |
63 c.got_revision_mapping[soln.name] = 'got_node_js_revision' | 66 c.got_revision_mapping[soln.name] = 'got_node_js_revision' |
64 | 67 |
65 | 68 |
66 @CONFIG_CTX(includes=['v8']) | 69 @CONFIG_CTX(includes=['v8']) |
67 def v8_valgrind(c): | 70 def v8_valgrind(c): |
68 c.solutions[0].custom_deps['v8/third_party/valgrind'] = ( | 71 c.solutions[0].custom_deps['v8/third_party/valgrind'] = ( |
69 'https://chromium.googlesource.com/chromium/deps/valgrind/binaries.git') | 72 'https://chromium.googlesource.com/chromium/deps/valgrind/binaries.git') |
OLD | NEW |