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/leveldatabase/src': | 154 'src/third_party/leveldatabase/src': |
155 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', | 155 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
156 | 156 |
157 'src/third_party/snappy/src': | 157 'src/third_party/snappy/src': |
158 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 158 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
159 | 159 |
160 'src/tools/grit': | 160 'src/tools/grit': |
161 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a5890a8118c0c80cc05
60e6d8d5cf65e5d725509', # from svn revision 185 | 161 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a5890a8118c0c80cc05
60e6d8d5cf65e5d725509', # from svn revision 185 |
162 | 162 |
163 'src/tools/gyp': | 163 'src/tools/gyp': |
164 Var('chromium_git') + '/external/gyp.git' + '@' + '82b08049cc0b1f9e0bdcc0702
ac6b523360f635f', # from svn revision 2020 | 164 Var('chromium_git') + '/external/gyp.git' + '@' + '789a019a832029f9a6f8d906a
4bcee4736eabc90', # from svn revision 2022 |
165 | 165 |
166 'src/tools/swarming_client': | 166 'src/tools/swarming_client': |
167 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 167 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
168 | 168 |
169 'src/v8': | 169 'src/v8': |
170 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 170 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
171 | 171 |
172 'src/native_client': | 172 'src/native_client': |
173 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 173 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
174 | 174 |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
762 # corresponding .py files have already been deleted. | 762 # corresponding .py files have already been deleted. |
763 'name': 'remove_stale_pyc_files', | 763 'name': 'remove_stale_pyc_files', |
764 'pattern': 'src/tools/.*\\.py', | 764 'pattern': 'src/tools/.*\\.py', |
765 'action': [ | 765 'action': [ |
766 'python', | 766 'python', |
767 'src/tools/remove_stale_pyc_files.py', | 767 'src/tools/remove_stale_pyc_files.py', |
768 'src/tools', | 768 'src/tools', |
769 ], | 769 ], |
770 }, | 770 }, |
771 ] | 771 ] |
OLD | NEW |