| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 # This downloads binaries for Native Client's newlib toolchain. | 331 # This downloads binaries for Native Client's newlib toolchain. |
| 332 # Done in lieu of building the toolchain from scratch as it can take | 332 # Done in lieu of building the toolchain from scratch as it can take |
| 333 # anywhere from 30 minutes to 4 hours depending on platform to build. | 333 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 334 'name': 'nacltools', | 334 'name': 'nacltools', |
| 335 'pattern': '.', | 335 'pattern': '.', |
| 336 'action': [ | 336 'action': [ |
| 337 'python', 'src/build/download_nacl_toolchains.py', | 337 'python', 'src/build/download_nacl_toolchains.py', |
| 338 '--packages', 'pnacl_newlib', | 338 '--packages', 'pnacl_newlib', |
| 339 'sync', '--extract', | 339 'sync', '--extract', |
| 340 ], | 340 ], |
| 341 } | 341 }, |
| 342 { |
| 343 # This downloads linux and android Go binaries according to |
| 344 # tools/go/VERSION. |
| 345 'name': 'gotools', |
| 346 'pattern': '.', |
| 347 'action': [ |
| 348 'python', 'src/tools/go/download.py', |
| 349 ], |
| 350 }, |
| 342 ] | 351 ] |
| OLD | NEW |