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" + "@" + "54b7dfc03f746b6a539ac38f2fb081
5d10b54734", | 11 Var("git_url") + "/external/gyp.git" + "@" + "aa0301be5a241c2972f90ce2a08097
b63c916390", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8d342a405be5ae8aacb1e16f0
bc31c3a4fbf26a2", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8d342a405be5ae8aacb1e16f0
bc31c3a4fbf26a2", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "0f8e6e4b126ee88137930a0
ae4776c4741808740", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "0f8e6e4b126ee88137930a0
ae4776c4741808740", |
16 "v8/base/trace_event/common": | 16 "v8/base/trace_event/common": |
17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "d83d44
b13d07c2fd0a40101a7deef9b93b841732", | 17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "d83d44
b13d07c2fd0a40101a7deef9b93b841732", |
18 "v8/tools/swarming_client": | 18 "v8/tools/swarming_client": |
19 Var('git_url') + '/external/swarming.client.git' + '@' + "9cdd76171e517a430a
72dcd7d66ade67e109aa00", | 19 Var('git_url') + '/external/swarming.client.git' + '@' + "9cdd76171e517a430a
72dcd7d66ade67e109aa00", |
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'name': 'clang', | 166 'name': 'clang', |
167 'pattern': '.', | 167 'pattern': '.', |
168 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 168 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
169 }, | 169 }, |
170 { | 170 { |
171 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 171 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
172 "pattern": ".", | 172 "pattern": ".", |
173 "action": ["python", "v8/build/gyp_v8"], | 173 "action": ["python", "v8/build/gyp_v8"], |
174 }, | 174 }, |
175 ] | 175 ] |
OLD | NEW |