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