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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
256 'pattern': '\\.sha1', | 256 'pattern': '\\.sha1', |
257 'action': [ | 257 'action': [ |
258 'python', | 258 'python', |
259 'v8/third_party/instrumented_libraries/scripts/download_binaries.py', | 259 'v8/third_party/instrumented_libraries/scripts/download_binaries.py', |
260 ], | 260 ], |
261 }, | 261 }, |
262 { | 262 { |
263 # Update the Windows toolchain if necessary. | 263 # Update the Windows toolchain if necessary. |
264 'name': 'win_toolchain', | 264 'name': 'win_toolchain', |
265 'pattern': '.', | 265 'pattern': '.', |
266 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], | 266 'action': ['python', 'v8/build/vs_toolchain.py', 'update'], |
Michael Achenbach
2016/11/30 19:23:19
Will remove this file in a follow up if this stick
| |
267 }, | 267 }, |
268 # Pull binutils for linux, enabled debug fission for faster linking / | 268 # Pull binutils for linux, enabled debug fission for faster linking / |
269 # debugging when used with clang on Ubuntu Precise. | 269 # debugging when used with clang on Ubuntu Precise. |
270 # https://code.google.com/p/chromium/issues/detail?id=352046 | 270 # https://code.google.com/p/chromium/issues/detail?id=352046 |
271 { | 271 { |
272 'name': 'binutils', | 272 'name': 'binutils', |
273 'pattern': 'v8/third_party/binutils', | 273 'pattern': 'v8/third_party/binutils', |
274 'action': [ | 274 'action': [ |
275 'python', | 275 'python', |
276 'v8/third_party/binutils/download.py', | 276 'v8/third_party/binutils/download.py', |
(...skipping 12 matching lines...) Expand all Loading... | |
289 'name': 'clang', | 289 'name': 'clang', |
290 'pattern': '.', | 290 'pattern': '.', |
291 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 291 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
292 }, | 292 }, |
293 { | 293 { |
294 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 294 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
295 "pattern": ".", | 295 "pattern": ".", |
296 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], | 296 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
297 }, | 297 }, |
298 ] | 298 ] |
OLD | NEW |