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" + "@" + "b2d15686436cdc17f67c3621 c314f8d96b5b6fd9", | 11 Var("git_url") + "/chromium/src/build.git" + "@" + "b2d15686436cdc17f67c3621 c314f8d96b5b6fd9", |
12 "v8/tools/gyp": | 12 "v8/tools/gyp": |
13 Var("git_url") + "/external/gyp.git" + "@" + "bce1c7793010574d88d7915e2d5539 5213ac63d1", | 13 Var("git_url") + "/external/gyp.git" + "@" + "bce1c7793010574d88d7915e2d5539 5213ac63d1", |
14 "v8/third_party/icu": | 14 "v8/third_party/icu": |
15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "c291cde264469b20ca969ce88 32088acb21e0c48", | 15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "d9f48be67ba790adbc59d3ab1 95b2d8278c9d73b", |
Michael Achenbach
2016/05/19 14:56:25
This should point to what chromium points to. Othe
altimin
2016/05/19 15:03:46
Yes, I've updated chromium's DEPS to this revision
| |
16 "v8/buildtools": | 16 "v8/buildtools": |
17 Var("git_url") + "/chromium/buildtools.git" + "@" + "06e80a0e17319868d4a9b13 f9bb6a248dc8d8b20", | 17 Var("git_url") + "/chromium/buildtools.git" + "@" + "06e80a0e17319868d4a9b13 f9bb6a248dc8d8b20", |
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/swarming_client": | 20 "v8/tools/swarming_client": |
21 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe 9ef956c69a544154701a49", | 21 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe 9ef956c69a544154701a49", |
22 "v8/testing/gtest": | 22 "v8/testing/gtest": |
23 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6 6431cb592dad629028a50b3dd418a408c87", | 23 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6 6431cb592dad629028a50b3dd418a408c87", |
24 "v8/testing/gmock": | 24 "v8/testing/gmock": |
25 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be", | 25 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be", |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 'name': 'clang', | 219 'name': 'clang', |
220 'pattern': '.', | 220 'pattern': '.', |
221 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 221 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
222 }, | 222 }, |
223 { | 223 { |
224 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 224 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
225 "pattern": ".", | 225 "pattern": ".", |
226 "action": ["python", "v8/gypfiles/gyp_v8"], | 226 "action": ["python", "v8/gypfiles/gyp_v8"], |
227 }, | 227 }, |
228 ] | 228 ] |
OLD | NEW |