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" + "@" + "01528c7244837168a1c80f06ff60fa
5a9793c824", | 11 Var("git_url") + "/external/gyp.git" + "@" + "01528c7244837168a1c80f06ff60fa
5a9793c824", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "94e4b770ce2f6065d4261d29c
32683a6099b9d93", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "94e4b770ce2f6065d4261d29c
32683a6099b9d93", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ef7f1f539cff0441c4401d8
c052e54cfd01bff07", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ef7f1f539cff0441c4401d8
c052e54cfd01bff07", |
16 "v8/tools/swarming_client": | 16 "v8/tools/swarming_client": |
17 Var('git_url') + '/external/swarming.client.git' + '@' + "3db878084b52a5e4ea
c0a32095e490e1b6ef9526", | 17 Var('git_url') + '/external/swarming.client.git' + '@' + "3db878084b52a5e4ea
c0a32095e490e1b6ef9526", |
18 "v8/testing/gtest": | 18 "v8/testing/gtest": |
19 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", | 19 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", |
20 "v8/testing/gmock": | 20 "v8/testing/gmock": |
21 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", | 21 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", |
| 22 "v8/test/benchmarks/data": |
| 23 Var("git_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188267b4
560491ff9155c5ee13e207ecd65f", |
22 "v8/test/mozilla/data": | 24 "v8/test/mozilla/data": |
23 Var("git_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c578a10
ea707b1a8ab0b88943fe5115ce2b9be", | 25 Var("git_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c578a10
ea707b1a8ab0b88943fe5115ce2b9be", |
24 "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_
simd.git" + "@" + "c8ef63c728283debc25891123eb00482fee4b8cd", | 26 "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_
simd.git" + "@" + "c8ef63c728283debc25891123eb00482fee4b8cd", |
25 "v8/test/test262/data": | 27 "v8/test/test262/data": |
26 Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "26e6fd7c17
79a63913cc7720cbc6c87b3b7b3285", | 28 Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "26e6fd7c17
79a63913cc7720cbc6c87b3b7b3285", |
27 "v8/tools/clang": | 29 "v8/tools/clang": |
28 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "a56c9063d582660d29
b32f967ce20875c589fc3e", | 30 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "a56c9063d582660d29
b32f967ce20875c589fc3e", |
29 } | 31 } |
30 | 32 |
31 deps_os = { | 33 deps_os = { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 'name': 'clang', | 158 'name': 'clang', |
157 'pattern': '.', | 159 'pattern': '.', |
158 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 160 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
159 }, | 161 }, |
160 { | 162 { |
161 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 163 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
162 "pattern": ".", | 164 "pattern": ".", |
163 "action": ["python", "v8/build/gyp_v8"], | 165 "action": ["python", "v8/build/gyp_v8"], |
164 }, | 166 }, |
165 ] | 167 ] |
OLD | NEW |