| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 # Pull the prebuilt network service binaries according to | 293 # Pull the prebuilt network service binaries according to |
| 294 # mojo/public/tools/NETWORK_SERVICE_VERSION. | 294 # mojo/public/tools/NETWORK_SERVICE_VERSION. |
| 295 { | 295 { |
| 296 'name': 'download_network_service', | 296 'name': 'download_network_service', |
| 297 'pattern': '', | 297 'pattern': '', |
| 298 'action': [ 'python', | 298 'action': [ 'python', |
| 299 'src/mojo/public/tools/download_network_service.py', | 299 'src/mojo/public/tools/download_network_service.py', |
| 300 '--tools-directory', '../../../tools', | 300 '--tools-directory', '../../../tools', |
| 301 ], | 301 ], |
| 302 }, | 302 }, |
| 303 # Run "pub get" on any directories with checked-in pubspec.yaml files. |
| 304 { |
| 305 'name': 'run_dart_pub_get', |
| 306 'pattern': '', |
| 307 'action': [ 'python', |
| 308 'src/mojo/public/tools/git/dart_pub_get.py', |
| 309 '--repository-root', '../../../..', |
| 310 '--dart-sdk-directory', |
| 311 '../../../../third_party/dart-sdk/dart-sdk', |
| 312 ], |
| 313 }, |
| 303 { | 314 { |
| 304 # Ensure that we don't accidentally reference any .pyc files whose | 315 # Ensure that we don't accidentally reference any .pyc files whose |
| 305 # corresponding .py files have already been deleted. | 316 # corresponding .py files have already been deleted. |
| 306 'name': 'remove_stale_pyc_files', | 317 'name': 'remove_stale_pyc_files', |
| 307 'pattern': 'src/tools/.*\\.py', | 318 'pattern': 'src/tools/.*\\.py', |
| 308 'action': [ | 319 'action': [ |
| 309 'python', | 320 'python', |
| 310 'src/tools/remove_stale_pyc_files.py', | 321 'src/tools/remove_stale_pyc_files.py', |
| 311 'src/tools', | 322 'src/tools', |
| 312 ], | 323 ], |
| 313 }, | 324 }, |
| 314 { | 325 { |
| 315 # This downloads binaries for Native Client's newlib toolchain. | 326 # This downloads binaries for Native Client's newlib toolchain. |
| 316 # Done in lieu of building the toolchain from scratch as it can take | 327 # Done in lieu of building the toolchain from scratch as it can take |
| 317 # anywhere from 30 minutes to 4 hours depending on platform to build. | 328 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 318 'name': 'nacltools', | 329 'name': 'nacltools', |
| 319 'pattern': '.', | 330 'pattern': '.', |
| 320 'action': [ | 331 'action': [ |
| 321 'python', 'src/build/download_nacl_toolchains.py', | 332 'python', 'src/build/download_nacl_toolchains.py', |
| 322 '--packages', 'pnacl_newlib', | 333 '--packages', 'pnacl_newlib', |
| 323 'sync', '--extract', | 334 'sync', '--extract', |
| 324 ], | 335 ], |
| 325 } | 336 } |
| 326 ] | 337 ] |
| OLD | NEW |