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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 | 499 |
500 'src/third_party/httpcomponents-core': | 500 'src/third_party/httpcomponents-core': |
501 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 501 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
502 | 502 |
503 'src/third_party/jarjar': | 503 'src/third_party/jarjar': |
504 Var('chromium_git') + '/chromium/deps/jarjar.git' + '@' + '2e1ead4c68c450e0
b77fe49e3f9137842b8b6920', | 504 Var('chromium_git') + '/chromium/deps/jarjar.git' + '@' + '2e1ead4c68c450e0
b77fe49e3f9137842b8b6920', |
505 | 505 |
506 'src/third_party/jsr-305/src': | 506 'src/third_party/jsr-305/src': |
507 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', | 507 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', |
508 | 508 |
| 509 'src/third_party/junit/src': |
| 510 Var('chromium_git') + '/external/junit.git' + '@' + 'c62e2df8dbecccb1b434d
4ba8843b59e90b03266', |
| 511 |
509 'src/third_party/lss': | 512 'src/third_party/lss': |
510 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 513 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
511 | 514 |
512 'src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le': | 515 'src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le': |
513 Var('chromium_git') + '/external/eyes-free/braille/client/src/com/googleco
de/eyesfree/braille.git' + '@' + '77bf6edb0138e3a38a2772248696f130dab45e34', | 516 Var('chromium_git') + '/external/eyes-free/braille/client/src/com/googleco
de/eyesfree/braille.git' + '@' + '77bf6edb0138e3a38a2772248696f130dab45e34', |
514 }, | 517 }, |
515 } | 518 } |
516 | 519 |
517 | 520 |
518 include_rules = [ | 521 include_rules = [ |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 # corresponding .py files have already been deleted. | 803 # corresponding .py files have already been deleted. |
801 'name': 'remove_stale_pyc_files', | 804 'name': 'remove_stale_pyc_files', |
802 'pattern': 'src/tools/.*\\.py', | 805 'pattern': 'src/tools/.*\\.py', |
803 'action': [ | 806 'action': [ |
804 'python', | 807 'python', |
805 'src/tools/remove_stale_pyc_files.py', | 808 'src/tools/remove_stale_pyc_files.py', |
806 'src/tools', | 809 'src/tools', |
807 ], | 810 ], |
808 }, | 811 }, |
809 ] | 812 ] |
OLD | NEW |