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" + "@" + "76d9f8b4fcae07fb82f28295
468cf92bade935bd", | 11 Var("git_url") + "/chromium/src/build.git" + "@" + "536d6fe8a0df34c0c412da48
3375d71b9b931afa", |
12 "v8/tools/gyp": | 12 "v8/tools/gyp": |
13 Var("git_url") + "/external/gyp.git" + "@" + "35eafcd939515d51d19556c543f9cf
97faf75ee6", | 13 Var("git_url") + "/external/gyp.git" + "@" + "35eafcd939515d51d19556c543f9cf
97faf75ee6", |
14 "v8/third_party/icu": | 14 "v8/third_party/icu": |
15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "ffa4b6704cf5cc9fec9485731
f24a05b2ba94bca", | 15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "ffa4b6704cf5cc9fec9485731
f24a05b2ba94bca", |
16 "v8/buildtools": | 16 "v8/buildtools": |
17 Var("git_url") + "/chromium/buildtools.git" + "@" + "db6179b29f90d28026b0cb2
3ef71d56ec31b8bd6", | 17 Var("git_url") + "/chromium/buildtools.git" + "@" + "d2664782a3855d5be8cbbfd
3c23b6652926de8cc", |
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' + '@' + "ea4154b4daca60a5f5c04
ef764b7eaf50362250c", | 21 Var('git_url') + '/chromium/src/tools/mb.git' + '@' + "ea4154b4daca60a5f5c04
ef764b7eaf50362250c", |
22 "v8/tools/swarming_client": | 22 "v8/tools/swarming_client": |
23 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe
9ef956c69a544154701a49", | 23 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe
9ef956c69a544154701a49", |
24 "v8/testing/gtest": | 24 "v8/testing/gtest": |
25 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", | 25 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", |
26 "v8/testing/gmock": | 26 "v8/testing/gmock": |
27 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", | 27 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", |
(...skipping 207 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 |