| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 'src/third_party/ub-uiautomator/lib': | 455 'src/third_party/ub-uiautomator/lib': |
| 456 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
e6f02481bada8bdbdfdd7987dd6e648c44a3adcb', | 456 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
e6f02481bada8bdbdfdd7987dd6e648c44a3adcb', |
| 457 | 457 |
| 458 'src/third_party/lss': | 458 'src/third_party/lss': |
| 459 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 459 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 460 | 460 |
| 461 'src/third_party/requests/src': | 461 'src/third_party/requests/src': |
| 462 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 462 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 463 | 463 |
| 464 'src/third_party/custom_tabs_client/src': | 464 'src/third_party/custom_tabs_client/src': |
| 465 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '47a8e598e6116a211c320d285d887e9fb9376524', | 465 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'ef3ea193af9f4e45dd5094e8b6a952fb213bf11e', |
| 466 }, | 466 }, |
| 467 } | 467 } |
| 468 | 468 |
| 469 | 469 |
| 470 include_rules = [ | 470 include_rules = [ |
| 471 # Everybody can use some things. | 471 # Everybody can use some things. |
| 472 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 472 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
| 473 '+base', | 473 '+base', |
| 474 '+build', | 474 '+build', |
| 475 '+ipc', | 475 '+ipc', |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 # migration completes (let's say Sep 1 2014). | 789 # migration completes (let's say Sep 1 2014). |
| 790 'name': 'check_git_config', | 790 'name': 'check_git_config', |
| 791 'pattern': '.', | 791 'pattern': '.', |
| 792 'action': [ | 792 'action': [ |
| 793 'python', | 793 'python', |
| 794 'src/tools/check_git_config.py', | 794 'src/tools/check_git_config.py', |
| 795 '--running-as-hook', | 795 '--running-as-hook', |
| 796 ], | 796 ], |
| 797 }, | 797 }, |
| 798 ] | 798 ] |
| OLD | NEW |