| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'src/third_party/safe_browsing/testing': | 132 'src/third_party/safe_browsing/testing': |
| 133 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 133 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
| 134 | 134 |
| 135 'src/third_party/leveldatabase/src': | 135 'src/third_party/leveldatabase/src': |
| 136 Var('chromium_git') + '/external/leveldb.git' + '@' + '40c17c0b84ac0b791fb43
4096fd5c05f3819ad55', | 136 Var('chromium_git') + '/external/leveldb.git' + '@' + '40c17c0b84ac0b791fb43
4096fd5c05f3819ad55', |
| 137 | 137 |
| 138 'src/third_party/snappy/src': | 138 'src/third_party/snappy/src': |
| 139 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 139 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 140 | 140 |
| 141 'src/tools/grit': | 141 'src/tools/grit': |
| 142 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '1dac9ae64b0224beb15
47810933a6f9998d0d55e', # from svn revision 191 | 142 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'f821b9db63825a88612
abe54daff036afd882147', # from svn revision 194 |
| 143 | 143 |
| 144 'src/tools/gyp': | 144 'src/tools/gyp': |
| 145 Var('chromium_git') + '/external/gyp.git' + '@' + '5122240c5e5c4d8da12c543d8
2b03d6089eb77c5', | 145 Var('chromium_git') + '/external/gyp.git' + '@' + '5122240c5e5c4d8da12c543d8
2b03d6089eb77c5', |
| 146 | 146 |
| 147 'src/tools/swarming_client': | 147 'src/tools/swarming_client': |
| 148 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 148 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 149 | 149 |
| 150 'src/v8': | 150 'src/v8': |
| 151 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 151 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 152 | 152 |
| (...skipping 647 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 |