OLD | NEW |
1 # Note: The buildbots evaluate this file with CWD set to the parent | 1 # Note: The buildbots evaluate this file with CWD set to the parent |
2 # directory and assume that the root of the checkout is in ./v8/, so | 2 # directory and assume that the root of the checkout is in ./v8/, so |
3 # all paths in here must match this assumption. | 3 # all paths in here must match this assumption. |
4 | 4 |
5 vars = { | 5 vars = { |
6 "chromium_trunk": "https://src.chromium.org/svn/trunk", | 6 "chromium_trunk": "https://src.chromium.org/svn/trunk", |
| 7 |
| 8 "buildtools_revision": "83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571", |
7 } | 9 } |
8 | 10 |
9 deps = { | 11 deps = { |
10 # Remember to keep the revision in sync with the Makefile. | 12 # Remember to keep the revision in sync with the Makefile. |
11 "v8/build/gyp": | 13 "v8/build/gyp": |
12 "http://gyp.googlecode.com/svn/trunk@1831", | 14 "http://gyp.googlecode.com/svn/trunk@1831", |
13 | 15 |
14 "v8/third_party/icu": | 16 "v8/third_party/icu": |
15 Var("chromium_trunk") + "/deps/third_party/icu46@258359", | 17 Var("chromium_trunk") + "/deps/third_party/icu46@258359", |
| 18 |
| 19 "v8/buildtools": |
| 20 "https://chromium.googlesource.com/chromium/buildtools.git@" + |
| 21 Var("buildtools_revision"), |
16 } | 22 } |
17 | 23 |
18 deps_os = { | 24 deps_os = { |
19 "win": { | 25 "win": { |
20 "v8/third_party/cygwin": | 26 "v8/third_party/cygwin": |
21 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", | 27 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", |
22 | 28 |
23 "v8/third_party/python_26": | 29 "v8/third_party/python_26": |
24 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 30 Var("chromium_trunk") + "/tools/third_party/python_26@89111", |
25 } | 31 } |
26 } | 32 } |
27 | 33 |
28 hooks = [ | 34 hooks = [ |
29 { | 35 { |
30 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 36 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
31 "pattern": ".", | 37 "pattern": ".", |
32 "action": ["python", "v8/build/gyp_v8"], | 38 "action": ["python", "v8/build/gyp_v8"], |
33 }, | 39 }, |
34 ] | 40 ] |
OLD | NEW |