| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'src/third_party/leveldatabase/src': | 143 'src/third_party/leveldatabase/src': |
| 144 Var('chromium_git') + '/external/leveldb.git' + '@' + '40c17c0b84ac0b791fb43
4096fd5c05f3819ad55', | 144 Var('chromium_git') + '/external/leveldb.git' + '@' + '40c17c0b84ac0b791fb43
4096fd5c05f3819ad55', |
| 145 | 145 |
| 146 'src/third_party/snappy/src': | 146 'src/third_party/snappy/src': |
| 147 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 147 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 148 | 148 |
| 149 'src/tools/grit': | 149 'src/tools/grit': |
| 150 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '15d48e32cc9f346245c
823ce48c54209d02ea983', # from svn revision 196 | 150 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '15d48e32cc9f346245c
823ce48c54209d02ea983', # from svn revision 196 |
| 151 | 151 |
| 152 'src/tools/gyp': | 152 'src/tools/gyp': |
| 153 Var('chromium_git') + '/external/gyp.git' + '@' + '2b17e0b26a93e8c9758c23aec
6c554da4ca8f0a9', | 153 Var('chromium_git') + '/external/gyp.git' + '@' + '5d01a8cda53bfa23f1dcbe0c3
1c33aa30f50cf4c', |
| 154 | 154 |
| 155 'src/tools/swarming_client': | 155 'src/tools/swarming_client': |
| 156 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 156 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 157 | 157 |
| 158 'src/v8': | 158 'src/v8': |
| 159 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 159 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 160 | 160 |
| 161 'src/native_client': | 161 'src/native_client': |
| 162 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 162 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
| 163 | 163 |
| (...skipping 640 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 |