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 | |
| 304 # (excluding sky/, whose pubspec.yaml files are not intended for supporting | |
| 305 # building in-place in the repo). | |
| 306 { | |
| 307 'name': 'run_dart_pub_get', | |
| 308 'pattern': '', | |
| 309 'action': [ 'python', | |
| 310 'src/mojo/public/tools/git/dart_pub_get.py', | |
| 311 '--repository-root', '../../../..', | |
| 312 '--dart-sdk-directory', | |
| 313 '../../../../third_party/dart-sdk/dart-sdk', | |
| 314 '--dirs-to-ignore', 'sky/', | |
|
tonyg
2015/04/10 13:39:20
Kind of feels like there should be a bug to remove
blundell
2015/04/13 14:23:29
I'm not sure what the long-term vision is there; g
| |
| 315 ], | |
| 316 }, | |
| 303 { | 317 { |
| 304 # Ensure that we don't accidentally reference any .pyc files whose | 318 # Ensure that we don't accidentally reference any .pyc files whose |
| 305 # corresponding .py files have already been deleted. | 319 # corresponding .py files have already been deleted. |
| 306 'name': 'remove_stale_pyc_files', | 320 'name': 'remove_stale_pyc_files', |
| 307 'pattern': 'src/tools/.*\\.py', | 321 'pattern': 'src/tools/.*\\.py', |
| 308 'action': [ | 322 'action': [ |
| 309 'python', | 323 'python', |
| 310 'src/tools/remove_stale_pyc_files.py', | 324 'src/tools/remove_stale_pyc_files.py', |
| 311 'src/tools', | 325 'src/tools', |
| 312 ], | 326 ], |
| 313 }, | 327 }, |
| 314 { | 328 { |
| 315 # This downloads binaries for Native Client's newlib toolchain. | 329 # This downloads binaries for Native Client's newlib toolchain. |
| 316 # Done in lieu of building the toolchain from scratch as it can take | 330 # 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. | 331 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 318 'name': 'nacltools', | 332 'name': 'nacltools', |
| 319 'pattern': '.', | 333 'pattern': '.', |
| 320 'action': [ | 334 'action': [ |
| 321 'python', 'src/build/download_nacl_toolchains.py', | 335 'python', 'src/build/download_nacl_toolchains.py', |
| 322 '--packages', 'pnacl_newlib', | 336 '--packages', 'pnacl_newlib', |
| 323 'sync', '--extract', | 337 'sync', '--extract', |
| 324 ], | 338 ], |
| 325 } | 339 } |
| 326 ] | 340 ] |
| OLD | NEW |