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 "chromium_url": "https://chromium.googlesource.com", | 6 "chromium_url": "https://chromium.googlesource.com", |
7 } | 7 } |
8 | 8 |
9 deps = { | 9 deps = { |
10 "v8/build": | 10 "v8/build": |
(...skipping 16 matching lines...) Expand all Loading... |
27 Var('chromium_url') + '/external/swarming.client.git' + '@' + "11e31afa5d330
756ff87aa12064bb5d032896cb5", | 27 Var('chromium_url') + '/external/swarming.client.git' + '@' + "11e31afa5d330
756ff87aa12064bb5d032896cb5", |
28 "v8/testing/gtest": | 28 "v8/testing/gtest": |
29 Var("chromium_url") + "/external/github.com/google/googletest.git" + "@" + "
6f8a66431cb592dad629028a50b3dd418a408c87", | 29 Var("chromium_url") + "/external/github.com/google/googletest.git" + "@" + "
6f8a66431cb592dad629028a50b3dd418a408c87", |
30 "v8/testing/gmock": | 30 "v8/testing/gmock": |
31 Var("chromium_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e1
02c9c332ce19a33faf75be", | 31 Var("chromium_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e1
02c9c332ce19a33faf75be", |
32 "v8/test/benchmarks/data": | 32 "v8/test/benchmarks/data": |
33 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188
267b4560491ff9155c5ee13e207ecd65f", | 33 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188
267b4560491ff9155c5ee13e207ecd65f", |
34 "v8/test/mozilla/data": | 34 "v8/test/mozilla/data": |
35 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5
78a10ea707b1a8ab0b88943fe5115ce2b9be", | 35 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5
78a10ea707b1a8ab0b88943fe5115ce2b9be", |
36 "v8/test/test262/data": | 36 "v8/test/test262/data": |
37 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "a72ee
6d91275aa6524e84a9b7070103411ef2689", | 37 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "975e5
4de17ede3d8802dd7411181dbbc29147308", |
38 "v8/test/test262/harness": | 38 "v8/test/test262/harness": |
39 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py
.git" + "@" + "0f2acdd882c84cff43b9d60df7574a1901e2cdcd", | 39 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py
.git" + "@" + "0f2acdd882c84cff43b9d60df7574a1901e2cdcd", |
40 "v8/tools/clang": | 40 "v8/tools/clang": |
41 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "c9f2fc024b72a
5831801e6f32908fbc7b63edb5a", | 41 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "c9f2fc024b72a
5831801e6f32908fbc7b63edb5a", |
42 "v8/test/wasm-js": | 42 "v8/test/wasm-js": |
43 Var("chromium_url") + "/external/github.com/WebAssembly/spec.git" + "@" + "0
02e57c86ccf5c80db0de6e40246665340350c43", | 43 Var("chromium_url") + "/external/github.com/WebAssembly/spec.git" + "@" + "0
02e57c86ccf5c80db0de6e40246665340350c43", |
44 } | 44 } |
45 | 45 |
46 deps_os = { | 46 deps_os = { |
47 "android": { | 47 "android": { |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'name': 'clang', | 290 'name': 'clang', |
291 'pattern': '.', | 291 'pattern': '.', |
292 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 292 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
293 }, | 293 }, |
294 { | 294 { |
295 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 295 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
296 "pattern": ".", | 296 "pattern": ".", |
297 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], | 297 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
298 }, | 298 }, |
299 ] | 299 ] |
OLD | NEW |