| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'src/third_party/leveldatabase/src': | 155 'src/third_party/leveldatabase/src': |
| 156 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', | 156 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
| 157 | 157 |
| 158 'src/third_party/snappy/src': | 158 'src/third_party/snappy/src': |
| 159 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 159 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 160 | 160 |
| 161 'src/tools/grit': | 161 'src/tools/grit': |
| 162 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46
7e845ba8543c22f9072af', # from svn revision 189 | 162 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46
7e845ba8543c22f9072af', # from svn revision 189 |
| 163 | 163 |
| 164 'src/tools/gyp': | 164 'src/tools/gyp': |
| 165 Var('chromium_git') + '/external/gyp.git' + '@' + '0bb67471bca068996e15b5673
8fa4824dfa19de0', | 165 Var('chromium_git') + '/external/gyp.git' + '@' + '29e94a3285ee899d14d5e56a6
001682620d3778f', |
| 166 | 166 |
| 167 'src/tools/swarming_client': | 167 'src/tools/swarming_client': |
| 168 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 168 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 169 | 169 |
| 170 'src/v8': | 170 'src/v8': |
| 171 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 171 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 172 | 172 |
| 173 'src/native_client': | 173 'src/native_client': |
| 174 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 174 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
| 175 | 175 |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 # corresponding .py files have already been deleted. | 757 # corresponding .py files have already been deleted. |
| 758 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
| 759 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
| 760 'action': [ | 760 'action': [ |
| 761 'python', | 761 'python', |
| 762 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
| 763 'src/tools', | 763 'src/tools', |
| 764 ], | 764 ], |
| 765 }, | 765 }, |
| 766 ] | 766 ] |
| OLD | NEW |