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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 # Pull symupload resources using checked-in hashes. | 416 # Pull symupload resources using checked-in hashes. |
417 { | 417 { |
418 'name': 'symupload_linux64', | 418 'name': 'symupload_linux64', |
419 'pattern': '.', | 419 'pattern': '.', |
420 'action': [ 'download_from_google_storage', | 420 'action': [ 'download_from_google_storage', |
421 '--no_resume', | 421 '--no_resume', |
422 '--platform=linux*', | 422 '--platform=linux*', |
423 '--no_auth', | 423 '--no_auth', |
424 '--bucket', 'mojo', | 424 '--bucket', 'mojo', |
425 '-s', 'src/mojo/tools/linux64/symupload.sha1', | 425 '-s', 'src/mojo/tools/linux64/symupload.sha1', |
| 426 ], |
| 427 }, |
| 428 # Pull prediction resources using checked-in hashes. |
| 429 { |
| 430 'name': 'prediction_resources', |
| 431 'pattern': '', |
| 432 'action': [ 'download_from_google_storage', |
| 433 '--no_resume', |
| 434 '--no_auth', |
| 435 '--bucket', 'mojo/prediction', |
| 436 '-d', 'src/services/prediction/res', |
426 ], | 437 ], |
427 }, | 438 }, |
428 ] | 439 ] |
OLD | NEW |