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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 # mojo/public/tools/NETWORK_SERVICE_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/public/tools/download_network_service.py' ], | 325 'action': [ 'python', |
| 326 'src/mojo/public/tools/download_network_service.py', |
| 327 '--tools-directory', '../../../tools', |
| 328 ], |
326 }, | 329 }, |
327 { | 330 { |
328 # Ensure that we don't accidentally reference any .pyc files whose | 331 # Ensure that we don't accidentally reference any .pyc files whose |
329 # corresponding .py files have already been deleted. | 332 # corresponding .py files have already been deleted. |
330 'name': 'remove_stale_pyc_files', | 333 'name': 'remove_stale_pyc_files', |
331 'pattern': 'src/tools/.*\\.py', | 334 'pattern': 'src/tools/.*\\.py', |
332 'action': [ | 335 'action': [ |
333 'python', | 336 'python', |
334 'src/tools/remove_stale_pyc_files.py', | 337 'src/tools/remove_stale_pyc_files.py', |
335 'src/tools', | 338 'src/tools', |
336 ], | 339 ], |
337 }, | 340 }, |
338 ] | 341 ] |
OLD | NEW |