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 19 matching lines...) Expand all Loading... |
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" + "@" + "975e5
4de17ede3d8802dd7411181dbbc29147308", | 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/test/cctest/traces-arm64": |
| 41 "https://git.linaro.org/arm/vixl-simulator-traces.git" + "@" + "6168e7e1eec5
2c9cb0a62f87f94df0582dc48aa8", |
40 "v8/tools/clang": | 42 "v8/tools/clang": |
41 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "e9e483c380e9c
d4982d8c7428bd0aaf68a415674", | 43 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "e9e483c380e9c
d4982d8c7428bd0aaf68a415674", |
42 "v8/test/wasm-js": | 44 "v8/test/wasm-js": |
43 Var("chromium_url") + "/external/github.com/WebAssembly/spec.git" + "@" + "0
02e57c86ccf5c80db0de6e40246665340350c43", | 45 Var("chromium_url") + "/external/github.com/WebAssembly/spec.git" + "@" + "0
02e57c86ccf5c80db0de6e40246665340350c43", |
44 } | 46 } |
45 | 47 |
46 deps_os = { | 48 deps_os = { |
47 "android": { | 49 "android": { |
48 "v8/third_party/android_tools": | 50 "v8/third_party/android_tools": |
49 Var("chromium_url") + "/android_tools.git" + "@" + "b43a6a289a7588b1769814
f04dd6c7d7176974cc", | 51 Var("chromium_url") + "/android_tools.git" + "@" + "b43a6a289a7588b1769814
f04dd6c7d7176974cc", |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'name': 'clang', | 292 'name': 'clang', |
291 'pattern': '.', | 293 'pattern': '.', |
292 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 294 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
293 }, | 295 }, |
294 { | 296 { |
295 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 297 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
296 "pattern": ".", | 298 "pattern": ".", |
297 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], | 299 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
298 }, | 300 }, |
299 ] | 301 ] |
OLD | NEW |