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