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": |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 "pattern": ".", | 197 "pattern": ".", |
198 "action": [ "download_from_google_storage", | 198 "action": [ "download_from_google_storage", |
199 "--no_resume", | 199 "--no_resume", |
200 "--platform=linux*", | 200 "--platform=linux*", |
201 "--no_auth", | 201 "--no_auth", |
202 "--bucket", "chromium-gn", | 202 "--bucket", "chromium-gn", |
203 "-s", "v8/buildtools/linux64/gn.sha1", | 203 "-s", "v8/buildtools/linux64/gn.sha1", |
204 ], | 204 ], |
205 }, | 205 }, |
206 { | 206 { |
| 207 "name": "wasm_fuzzer", |
| 208 "pattern": ".", |
| 209 "action": [ "download_from_google_storage", |
| 210 "--no_resume", |
| 211 "--no_auth", |
| 212 "-u", |
| 213 "--bucket", "v8-wasm-fuzzer", |
| 214 "-s", "v8/test/fuzzer/wasm.tar.gz.sha1", |
| 215 ], |
| 216 }, |
| 217 { |
| 218 "name": "wasm_asmjs_fuzzer", |
| 219 "pattern": ".", |
| 220 "action": [ "download_from_google_storage", |
| 221 "--no_resume", |
| 222 "--no_auth", |
| 223 "-u", |
| 224 "--bucket", "v8-wasm-asmjs-fuzzer", |
| 225 "-s", "v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", |
| 226 ], |
| 227 }, |
| 228 { |
207 # Downloads the current stable linux sysroot to build/linux/ if needed. | 229 # Downloads the current stable linux sysroot to build/linux/ if needed. |
208 # This sysroot updates at about the same rate that the chrome build deps | 230 # This sysroot updates at about the same rate that the chrome build deps |
209 # change. | 231 # change. |
210 'name': 'sysroot', | 232 'name': 'sysroot', |
211 'pattern': '.', | 233 'pattern': '.', |
212 'action': [ | 234 'action': [ |
213 'python', | 235 'python', |
214 'v8/build/linux/sysroot_scripts/install-sysroot.py', | 236 'v8/build/linux/sysroot_scripts/install-sysroot.py', |
215 '--running-as-hook', | 237 '--running-as-hook', |
216 ], | 238 ], |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 'name': 'clang', | 277 'name': 'clang', |
256 'pattern': '.', | 278 'pattern': '.', |
257 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 279 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
258 }, | 280 }, |
259 { | 281 { |
260 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 282 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
261 "pattern": ".", | 283 "pattern": ".", |
262 "action": ["python", "v8/gypfiles/gyp_v8"], | 284 "action": ["python", "v8/gypfiles/gyp_v8"], |
263 }, | 285 }, |
264 ] | 286 ] |
OLD | NEW |