| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'src/third_party/cacheinvalidation/src': | 154 'src/third_party/cacheinvalidation/src': |
| 155 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 | 155 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 |
| 156 | 156 |
| 157 'src/third_party/leveldatabase/src': | 157 'src/third_party/leveldatabase/src': |
| 158 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', | 158 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
| 159 | 159 |
| 160 'src/third_party/snappy/src': | 160 'src/third_party/snappy/src': |
| 161 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 161 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 162 | 162 |
| 163 'src/tools/grit': | 163 'src/tools/grit': |
| 164 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '0287c187b11ed535902
54e4d817e836a44a7a1a7', # from svn revision 186 | 164 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '0ac6d137916c4d7a45a
e7d61f892652a1a4cce33', # from svn revision 188 |
| 165 | 165 |
| 166 'src/tools/gyp': | 166 'src/tools/gyp': |
| 167 Var('chromium_git') + '/external/gyp.git' + '@' + 'd174d75bf69c682cb62af9187
879e01513b35e52', | 167 Var('chromium_git') + '/external/gyp.git' + '@' + 'd174d75bf69c682cb62af9187
879e01513b35e52', |
| 168 | 168 |
| 169 'src/tools/swarming_client': | 169 'src/tools/swarming_client': |
| 170 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 170 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 171 | 171 |
| 172 'src/v8': | 172 'src/v8': |
| 173 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 173 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 174 | 174 |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 # corresponding .py files have already been deleted. | 790 # corresponding .py files have already been deleted. |
| 791 'name': 'remove_stale_pyc_files', | 791 'name': 'remove_stale_pyc_files', |
| 792 'pattern': 'src/tools/.*\\.py', | 792 'pattern': 'src/tools/.*\\.py', |
| 793 'action': [ | 793 'action': [ |
| 794 'python', | 794 'python', |
| 795 'src/tools/remove_stale_pyc_files.py', | 795 'src/tools/remove_stale_pyc_files.py', |
| 796 'src/tools', | 796 'src/tools', |
| 797 ], | 797 ], |
| 798 }, | 798 }, |
| 799 ] | 799 ] |
| OLD | NEW |