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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'src/third_party/hunspell_dictionaries': | 147 'src/third_party/hunspell_dictionaries': |
148 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', | 148 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', |
149 | 149 |
150 'src/third_party/safe_browsing/testing': | 150 'src/third_party/safe_browsing/testing': |
151 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 151 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
152 | 152 |
153 'src/third_party/cacheinvalidation/src': | 153 'src/third_party/cacheinvalidation/src': |
154 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 | 154 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 |
155 | 155 |
156 'src/third_party/leveldatabase/src': | 156 'src/third_party/leveldatabase/src': |
157 Var('chromium_git') + '/external/leveldb.git' + '@' + '803d69203a62faf50f1b7
7897310a3a1fcae712b', | 157 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
158 | 158 |
159 'src/third_party/libc++/trunk': | 159 'src/third_party/libc++/trunk': |
160 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), | 160 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), |
161 | 161 |
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 |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # corresponding .py files have already been deleted. | 782 # corresponding .py files have already been deleted. |
783 'name': 'remove_stale_pyc_files', | 783 'name': 'remove_stale_pyc_files', |
784 'pattern': 'src/tools/.*\\.py', | 784 'pattern': 'src/tools/.*\\.py', |
785 'action': [ | 785 'action': [ |
786 'python', | 786 'python', |
787 'src/tools/remove_stale_pyc_files.py', | 787 'src/tools/remove_stale_pyc_files.py', |
788 'src/tools', | 788 'src/tools', |
789 ], | 789 ], |
790 }, | 790 }, |
791 ] | 791 ] |
OLD | NEW |