| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 'src/third_party/libc++abi/trunk': | 162 'src/third_party/libc++abi/trunk': |
| 163 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | 163 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), |
| 164 | 164 |
| 165 'src/third_party/snappy/src': | 165 'src/third_party/snappy/src': |
| 166 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 166 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 167 | 167 |
| 168 'src/tools/grit': | 168 'src/tools/grit': |
| 169 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a24a0e647bb718b3540
db89864cf586b12331e82', # from svn revision 182 | 169 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a24a0e647bb718b3540
db89864cf586b12331e82', # from svn revision 182 |
| 170 | 170 |
| 171 'src/tools/gyp': | 171 'src/tools/gyp': |
| 172 Var('chromium_git') + '/external/gyp.git' + '@' + 'b13d8f243da15ded051e87e66
3c4f2c2fcc5804c', # from svn revision 1994 | 172 Var('chromium_git') + '/external/gyp.git' + '@' + '0a381c067483f37d7344b3611
0b31c9b14998ed1', # from svn revision 2008 |
| 173 | 173 |
| 174 'src/tools/swarming_client': | 174 'src/tools/swarming_client': |
| 175 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 175 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
| 176 | 176 |
| 177 'src/v8': | 177 'src/v8': |
| 178 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 178 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 179 | 179 |
| 180 'src/native_client': | 180 'src/native_client': |
| 181 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 181 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
| 182 | 182 |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 # corresponding .py files have already been deleted. | 779 # corresponding .py files have already been deleted. |
| 780 'name': 'remove_stale_pyc_files', | 780 'name': 'remove_stale_pyc_files', |
| 781 'pattern': 'src/tools/.*\\.py', | 781 'pattern': 'src/tools/.*\\.py', |
| 782 'action': [ | 782 'action': [ |
| 783 'python', | 783 'python', |
| 784 'src/tools/remove_stale_pyc_files.py', | 784 'src/tools/remove_stale_pyc_files.py', |
| 785 'src/tools', | 785 'src/tools', |
| 786 ], | 786 ], |
| 787 }, | 787 }, |
| 788 ] | 788 ] |
| OLD | NEW |