| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 'name': 'eu-strip', | 270 'name': 'eu-strip', |
| 271 'pattern': '.', | 271 'pattern': '.', |
| 272 'action': [ 'download_from_google_storage', | 272 'action': [ 'download_from_google_storage', |
| 273 '--no_resume', | 273 '--no_resume', |
| 274 '--platform=linux*', | 274 '--platform=linux*', |
| 275 '--no_auth', | 275 '--no_auth', |
| 276 '--bucket', 'chromium-eu-strip', | 276 '--bucket', 'chromium-eu-strip', |
| 277 '-s', 'src/build/linux/bin/eu-strip.sha1', | 277 '-s', 'src/build/linux/bin/eu-strip.sha1', |
| 278 ], | 278 ], |
| 279 }, | 279 }, |
| 280 # Pull the mojo_shell binary, used for mojo development |
| 281 { |
| 282 'name': 'download_mojo_shell', |
| 283 'pattern': '', |
| 284 'action': [ 'python', 'src/mojo/public/tools/download_shell_binary.py' ], |
| 285 }, |
| 280 { | 286 { |
| 281 # Ensure that we don't accidentally reference any .pyc files whose | 287 # Ensure that we don't accidentally reference any .pyc files whose |
| 282 # corresponding .py files have already been deleted. | 288 # corresponding .py files have already been deleted. |
| 283 'name': 'remove_stale_pyc_files', | 289 'name': 'remove_stale_pyc_files', |
| 284 'pattern': 'src/tools/.*\\.py', | 290 'pattern': 'src/tools/.*\\.py', |
| 285 'action': [ | 291 'action': [ |
| 286 'python', | 292 'python', |
| 287 'src/tools/remove_stale_pyc_files.py', | 293 'src/tools/remove_stale_pyc_files.py', |
| 288 'src/tools', | 294 'src/tools', |
| 289 ], | 295 ], |
| 290 }, | 296 }, |
| 291 ] | 297 ] |
| OLD | NEW |