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/gyp": | 10 "v8/build/gyp": |
11 Var("git_url") + "/external/gyp.git" + "@" + "5170bfd38fe79bd5b16aa7f6c5439f
b90a37ae66", | 11 Var("git_url") + "/external/gyp.git" + "@" + "2f9ffdc96135eaa102ee90584e7c6e
5e5c45915c", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8f91ea3a7e0413df331220405
8da856058a8099b", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8f91ea3a7e0413df331220405
8da856058a8099b", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ef3e530703353ba8ad09469
4ba7c156daddbddeb", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ef3e530703353ba8ad09469
4ba7c156daddbddeb", |
16 "v8/base/trace_event/common": | 16 "v8/base/trace_event/common": |
17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "4b0920
7e447ae5bd34643b4c6321bee7b76d35f9", | 17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "4b0920
7e447ae5bd34643b4c6321bee7b76d35f9", |
18 "v8/tools/swarming_client": | 18 "v8/tools/swarming_client": |
19 Var('git_url') + '/external/swarming.client.git' + '@' + "0b908f18767c8304dc
089454bc1c91755d21f1f5", | 19 Var('git_url') + '/external/swarming.client.git' + '@' + "0b908f18767c8304dc
089454bc1c91755d21f1f5", |
20 "v8/testing/gtest": | 20 "v8/testing/gtest": |
21 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", | 21 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'name': 'clang', | 200 'name': 'clang', |
201 'pattern': '.', | 201 'pattern': '.', |
202 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 202 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
203 }, | 203 }, |
204 { | 204 { |
205 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 205 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
206 "pattern": ".", | 206 "pattern": ".", |
207 "action": ["python", "v8/build/gyp_v8"], | 207 "action": ["python", "v8/build/gyp_v8"], |
208 }, | 208 }, |
209 ] | 209 ] |
OLD | NEW |