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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 'pattern': '.', | 311 'pattern': '.', |
312 'action': [ 'download_from_google_storage', | 312 'action': [ 'download_from_google_storage', |
313 '--no_resume', | 313 '--no_resume', |
314 '--platform=linux*', | 314 '--platform=linux*', |
315 '--no_auth', | 315 '--no_auth', |
316 '--bucket', 'chromium-eu-strip', | 316 '--bucket', 'chromium-eu-strip', |
317 '-s', 'src/build/linux/bin/eu-strip.sha1', | 317 '-s', 'src/build/linux/bin/eu-strip.sha1', |
318 ], | 318 ], |
319 }, | 319 }, |
320 # Pull the prebuilt network service binaries according to | 320 # Pull the prebuilt network service binaries according to |
321 # services/network/VERSION. | 321 # mojo/public/tools/NETWORK_SERVICE_VERSION. |
322 { | 322 { |
323 'name': 'download_network_service', | 323 'name': 'download_network_service', |
324 'pattern': '', | 324 'pattern': '', |
325 'action': [ 'python', 'src/mojo/services/network/download_network_service.py
' ], | 325 'action': [ 'python', 'src/mojo/public/tools/download_network_service.py' ], |
326 }, | 326 }, |
327 { | 327 { |
328 # Ensure that we don't accidentally reference any .pyc files whose | 328 # Ensure that we don't accidentally reference any .pyc files whose |
329 # corresponding .py files have already been deleted. | 329 # corresponding .py files have already been deleted. |
330 'name': 'remove_stale_pyc_files', | 330 'name': 'remove_stale_pyc_files', |
331 'pattern': 'src/tools/.*\\.py', | 331 'pattern': 'src/tools/.*\\.py', |
332 'action': [ | 332 'action': [ |
333 'python', | 333 'python', |
334 'src/tools/remove_stale_pyc_files.py', | 334 'src/tools/remove_stale_pyc_files.py', |
335 'src/tools', | 335 'src/tools', |
336 ], | 336 ], |
337 }, | 337 }, |
338 ] | 338 ] |
OLD | NEW |