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 "git_url": "https://chromium.googlesource.com", | 6 "git_url": "https://chromium.googlesource.com", |
7 } | 7 } |
8 | 8 |
9 deps = { | 9 deps = { |
10 "v8/build": | 10 "v8/build": |
11 Var("git_url") + "/chromium/src/build.git" + "@" + "c409cdb27d5dfcfd5d08f22b
18af9010ae50b6a8", | 11 Var("git_url") + "/chromium/src/build.git" + "@" + "e609d4bcabeef6b140c6326c
aea53c5b6dbec72a", |
12 "v8/tools/gyp": | 12 "v8/tools/gyp": |
13 Var("git_url") + "/external/gyp.git" + "@" + "e7079f0e0e14108ab0dba58728ff21
9637458563", | 13 Var("git_url") + "/external/gyp.git" + "@" + "e7079f0e0e14108ab0dba58728ff21
9637458563", |
14 "v8/third_party/icu": | 14 "v8/third_party/icu": |
15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "b5ecbb29a26532f72ef482569
b223d5a51fd50bf", | 15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "b5ecbb29a26532f72ef482569
b223d5a51fd50bf", |
16 "v8/buildtools": | 16 "v8/buildtools": |
17 Var("git_url") + "/chromium/buildtools.git" + "@" + "55638fe5c31652a808f0590
27b99b08bafd15fb7", | 17 Var("git_url") + "/chromium/buildtools.git" + "@" + "55638fe5c31652a808f0590
27b99b08bafd15fb7", |
18 "v8/base/trace_event/common": | 18 "v8/base/trace_event/common": |
19 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "54b845
5be9505c2cb0cf5c26bb86739c236471aa", | 19 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "54b845
5be9505c2cb0cf5c26bb86739c236471aa", |
20 "v8/tools/mb": | 20 "v8/tools/mb": |
21 Var('git_url') + '/chromium/src/tools/mb.git' + '@' + "6aa2ae44b604e6feec721
bec77208210142dd4f5", | 21 Var('git_url') + '/chromium/src/tools/mb.git' + '@' + "6aa2ae44b604e6feec721
bec77208210142dd4f5", |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'name': 'clang', | 235 'name': 'clang', |
236 'pattern': '.', | 236 'pattern': '.', |
237 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 237 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
238 }, | 238 }, |
239 { | 239 { |
240 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 240 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
241 "pattern": ".", | 241 "pattern": ".", |
242 "action": ["python", "v8/gypfiles/gyp_v8"], | 242 "action": ["python", "v8/gypfiles/gyp_v8"], |
243 }, | 243 }, |
244 ] | 244 ] |
OLD | NEW |