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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 'src/third_party/usrsctp/usrsctplib': | 203 'src/third_party/usrsctp/usrsctplib': |
204 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', | 204 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', |
205 | 205 |
206 'src/third_party/libsrtp': | 206 'src/third_party/libsrtp': |
207 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '720780acf8fa41c4a
6ad515d0382d62f8f5195eb', # from svn revision 295151 | 207 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '720780acf8fa41c4a
6ad515d0382d62f8f5195eb', # from svn revision 295151 |
208 | 208 |
209 'src/third_party/yasm/source/patched-yasm': | 209 'src/third_party/yasm/source/patched-yasm': |
210 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6
c7c6a1387217352ce02b31754deb54d2a', | 210 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6
c7c6a1387217352ce02b31754deb54d2a', |
211 | 211 |
212 'src/third_party/libjpeg_turbo': | 212 'src/third_party/libjpeg_turbo': |
213 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '414f2433e66
34942b9ceea9450bdc21dcc5520cf', | 213 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7260e4d8b8e
1e40b17f03fafdf1cd83296900f76', |
214 | 214 |
215 'src/third_party/flac': | 215 'src/third_party/flac': |
216 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '812243a85937e06102ba
312c6caf8823e243b35b', | 216 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '812243a85937e06102ba
312c6caf8823e243b35b', |
217 | 217 |
218 'src/third_party/flatbuffers/src': | 218 'src/third_party/flatbuffers/src': |
219 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '
6f751d5d26fd566f8c9060358101a2596677f9cf', | 219 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '
6f751d5d26fd566f8c9060358101a2596677f9cf', |
220 | 220 |
221 'src/third_party/pyftpdlib/src': | 221 'src/third_party/pyftpdlib/src': |
222 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', | 222 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', |
223 | 223 |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'src/build/android/download_doclava.py', | 852 'src/build/android/download_doclava.py', |
853 ], | 853 ], |
854 }, | 854 }, |
855 { | 855 { |
856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
857 'name': 'gyp', | 857 'name': 'gyp', |
858 'pattern': '.', | 858 'pattern': '.', |
859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
860 }, | 860 }, |
861 ] | 861 ] |
OLD | NEW |