OLD | NEW |
---|---|
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
488 | 488 |
489 'src/third_party/jsr-305/src': | 489 'src/third_party/jsr-305/src': |
490 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a f6d5df2d3210e3bfc0919', | 490 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a f6d5df2d3210e3bfc0919', |
491 | 491 |
492 'src/third_party/junit/src': | 492 'src/third_party/junit/src': |
493 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1 346b750c3209019f2e1', | 493 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1 346b750c3209019f2e1', |
494 | 494 |
495 'src/third_party/lss': | 495 'src/third_party/lss': |
496 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), | 496 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), |
497 | 497 |
498 'src/third_party/requests': | |
499 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + ' @' + '4e90aa7bd0c8051fe4894971fb77c72a26a92728', | |
jbudorick
2014/12/11 18:59:44
Roll this back to the 2.5.0 tag.
rnephew (Reviews Here)
2014/12/11 19:02:41
Done.
| |
500 | |
498 }, | 501 }, |
499 } | 502 } |
500 | 503 |
501 | 504 |
502 include_rules = [ | 505 include_rules = [ |
503 # Everybody can use some things. | 506 # Everybody can use some things. |
504 '+base', | 507 '+base', |
505 '+build', | 508 '+build', |
506 '+ipc', | 509 '+ipc', |
507 | 510 |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
784 # corresponding .py files have already been deleted. | 787 # corresponding .py files have already been deleted. |
785 'name': 'remove_stale_pyc_files', | 788 'name': 'remove_stale_pyc_files', |
786 'pattern': 'src/tools/.*\\.py', | 789 'pattern': 'src/tools/.*\\.py', |
787 'action': [ | 790 'action': [ |
788 'python', | 791 'python', |
789 'src/tools/remove_stale_pyc_files.py', | 792 'src/tools/remove_stale_pyc_files.py', |
790 'src/tools', | 793 'src/tools', |
791 ], | 794 ], |
792 }, | 795 }, |
793 ] | 796 ] |
OLD | NEW |