Chromium Code Reviews| 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. | |
| 303 { | 304 { |
| 305 'name': 'run_dart_pub_get', | |
| 306 'pattern': '', | |
| 307 'action': [ 'python', | |
| 308 'src/mojo/public/tools/git/dart_pub_get.py', | |
|
zra
2015/04/09 16:20:48
There is also a dart_analyze.py, so putting these
| |
| 309 '--repository-root', '../../../..', | |
| 310 '--dart-sdk-directory', | |
| 311 '../../../../third_party/dart-sdk/dart-sdk', | |
| 312 ], | |
| 313 }, { | |
|
tonyg
2015/04/09 12:55:56
nit: missing a line break here
blundell
2015/04/09 15:34:36
Done.
| |
| 304 # Ensure that we don't accidentally reference any .pyc files whose | 314 # Ensure that we don't accidentally reference any .pyc files whose |
| 305 # corresponding .py files have already been deleted. | 315 # corresponding .py files have already been deleted. |
| 306 'name': 'remove_stale_pyc_files', | 316 'name': 'remove_stale_pyc_files', |
| 307 'pattern': 'src/tools/.*\\.py', | 317 'pattern': 'src/tools/.*\\.py', |
| 308 'action': [ | 318 'action': [ |
| 309 'python', | 319 'python', |
| 310 'src/tools/remove_stale_pyc_files.py', | 320 'src/tools/remove_stale_pyc_files.py', |
| 311 'src/tools', | 321 'src/tools', |
| 312 ], | 322 ], |
| 313 }, | 323 }, |
| 314 { | 324 { |
| 315 # This downloads binaries for Native Client's newlib toolchain. | 325 # This downloads binaries for Native Client's newlib toolchain. |
| 316 # Done in lieu of building the toolchain from scratch as it can take | 326 # 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. | 327 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 318 'name': 'nacltools', | 328 'name': 'nacltools', |
| 319 'pattern': '.', | 329 'pattern': '.', |
| 320 'action': [ | 330 'action': [ |
| 321 'python', 'src/build/download_nacl_toolchains.py', | 331 'python', 'src/build/download_nacl_toolchains.py', |
| 322 '--packages', 'pnacl_newlib', | 332 '--packages', 'pnacl_newlib', |
| 323 'sync', '--extract', | 333 'sync', '--extract', |
| 324 ], | 334 ], |
| 325 } | 335 } |
| 326 ] | 336 ] |
| OLD | NEW |