| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 'src/third_party/leveldatabase/src': | 140 'src/third_party/leveldatabase/src': |
| 141 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', | 141 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
| 142 | 142 |
| 143 'src/third_party/snappy/src': | 143 'src/third_party/snappy/src': |
| 144 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 144 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 145 | 145 |
| 146 'src/tools/grit': | 146 'src/tools/grit': |
| 147 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46
7e845ba8543c22f9072af', # from svn revision 189 | 147 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46
7e845ba8543c22f9072af', # from svn revision 189 |
| 148 | 148 |
| 149 'src/tools/gyp': | 149 'src/tools/gyp': |
| 150 Var('chromium_git') + '/external/gyp.git' + '@' + 'fdc7b812f99e48c00e9a487bd
56751bbeae07043', | 150 Var('chromium_git') + '/external/gyp.git' + '@' + '79de4031069f37870f04e8b6b
bf42f0c7fec37aa', |
| 151 | 151 |
| 152 'src/tools/swarming_client': | 152 'src/tools/swarming_client': |
| 153 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 153 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 154 | 154 |
| 155 'src/v8': | 155 'src/v8': |
| 156 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 156 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 157 | 157 |
| 158 'src/native_client': | 158 'src/native_client': |
| 159 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 159 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
| 160 | 160 |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 # migration completes (let's say Sep 1 2014). | 776 # migration completes (let's say Sep 1 2014). |
| 777 'name': 'check_git_config', | 777 'name': 'check_git_config', |
| 778 'pattern': '.', | 778 'pattern': '.', |
| 779 'action': [ | 779 'action': [ |
| 780 'python', | 780 'python', |
| 781 'src/tools/check_git_config.py', | 781 'src/tools/check_git_config.py', |
| 782 '--running-as-hook', | 782 '--running-as-hook', |
| 783 ], | 783 ], |
| 784 }, | 784 }, |
| 785 ] | 785 ] |
| OLD | NEW |