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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 'src/third_party/ub-uiautomator/lib': | 457 'src/third_party/ub-uiautomator/lib': |
458 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 458 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
459 | 459 |
460 'src/third_party/lss': | 460 'src/third_party/lss': |
461 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 461 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
462 | 462 |
463 'src/third_party/requests/src': | 463 'src/third_party/requests/src': |
464 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 464 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
465 | 465 |
466 'src/third_party/custom_tabs_client/src': | 466 'src/third_party/custom_tabs_client/src': |
467 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '6bae8bf337d5c51184c0c01f5baca3e0858ade86', | 467 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'b107bc79d260652dce73cb263314380d9f7f25c9', |
468 }, | 468 }, |
469 } | 469 } |
470 | 470 |
471 | 471 |
472 include_rules = [ | 472 include_rules = [ |
473 # Everybody can use some things. | 473 # Everybody can use some things. |
474 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 474 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
475 '+base', | 475 '+base', |
476 '+build', | 476 '+build', |
477 '+ipc', | 477 '+ipc', |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 'pattern': '.', | 800 'pattern': '.', |
801 'action': [ | 801 'action': [ |
802 'python', | 802 'python', |
803 'src/tools/check_git_config.py', | 803 'src/tools/check_git_config.py', |
804 '--running-as-hook', | 804 '--running-as-hook', |
805 ], | 805 ], |
806 }, | 806 }, |
807 ] | 807 ] |
808 | 808 |
809 | 809 |
OLD | NEW |