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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "pattern": ".", | 217 "pattern": ".", |
218 "action": [ "download_from_google_storage", | 218 "action": [ "download_from_google_storage", |
219 "--no_resume", | 219 "--no_resume", |
220 "--no_auth", | 220 "--no_auth", |
221 "-u", | 221 "-u", |
222 "--bucket", "v8-wasm-asmjs-fuzzer", | 222 "--bucket", "v8-wasm-asmjs-fuzzer", |
223 "-s", "v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", | 223 "-s", "v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", |
224 ], | 224 ], |
225 }, | 225 }, |
226 { | 226 { |
| 227 "name": "closure_compiler", |
| 228 "pattern": ".", |
| 229 "action": [ "download_from_google_storage", |
| 230 "--no_resume", |
| 231 "--no_auth", |
| 232 "-u", |
| 233 "--bucket", "chromium-v8-closure-compiler", |
| 234 "-s", "v8/src/inspector/build/closure-compiler.tar.gz.sha1", |
| 235 ], |
| 236 }, |
| 237 { |
227 # Downloads the current stable linux sysroot to build/linux/ if needed. | 238 # Downloads the current stable linux sysroot to build/linux/ if needed. |
228 # This sysroot updates at about the same rate that the chrome build deps | 239 # This sysroot updates at about the same rate that the chrome build deps |
229 # change. | 240 # change. |
230 'name': 'sysroot', | 241 'name': 'sysroot', |
231 'pattern': '.', | 242 'pattern': '.', |
232 'action': [ | 243 'action': [ |
233 'python', | 244 'python', |
234 'v8/build/linux/sysroot_scripts/install-sysroot.py', | 245 'v8/build/linux/sysroot_scripts/install-sysroot.py', |
235 '--running-as-hook', | 246 '--running-as-hook', |
236 ], | 247 ], |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 'name': 'clang', | 286 'name': 'clang', |
276 'pattern': '.', | 287 'pattern': '.', |
277 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 288 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
278 }, | 289 }, |
279 { | 290 { |
280 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 291 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
281 "pattern": ".", | 292 "pattern": ".", |
282 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], | 293 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
283 }, | 294 }, |
284 ] | 295 ] |
OLD | NEW |