Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: DEPS

Issue 782083002: Add requests to third party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix path Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | third_party/requests/LICENSE » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/src':
499 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + ' @' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
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
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 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/requests/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698