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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 'src/third_party/usrsctp/usrsctplib': | 201 'src/third_party/usrsctp/usrsctplib': |
202 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', | 202 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', |
203 | 203 |
204 'src/third_party/libsrtp': | 204 'src/third_party/libsrtp': |
205 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '720780acf8fa41c4a
6ad515d0382d62f8f5195eb', # from svn revision 295151 | 205 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '720780acf8fa41c4a
6ad515d0382d62f8f5195eb', # from svn revision 295151 |
206 | 206 |
207 'src/third_party/yasm/source/patched-yasm': | 207 'src/third_party/yasm/source/patched-yasm': |
208 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6
c7c6a1387217352ce02b31754deb54d2a', | 208 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6
c7c6a1387217352ce02b31754deb54d2a', |
209 | 209 |
210 'src/third_party/libjpeg_turbo': | 210 'src/third_party/libjpeg_turbo': |
211 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '51655203fbc
949e6423dcd13ce22fe30ab5b5ea2', | 211 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '414f2433e66
34942b9ceea9450bdc21dcc5520cf', |
212 | 212 |
213 'src/third_party/flac': | 213 'src/third_party/flac': |
214 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '812243a85937e06102ba
312c6caf8823e243b35b', | 214 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '812243a85937e06102ba
312c6caf8823e243b35b', |
215 | 215 |
216 'src/third_party/flatbuffers/src': | 216 'src/third_party/flatbuffers/src': |
217 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '
6f751d5d26fd566f8c9060358101a2596677f9cf', | 217 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '
6f751d5d26fd566f8c9060358101a2596677f9cf', |
218 | 218 |
219 'src/third_party/pyftpdlib/src': | 219 'src/third_party/pyftpdlib/src': |
220 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', | 220 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', |
221 | 221 |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 { | 845 { |
846 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 846 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
847 'name': 'gyp', | 847 'name': 'gyp', |
848 'pattern': '.', | 848 'pattern': '.', |
849 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 849 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
850 }, | 850 }, |
851 ] | 851 ] |
852 | 852 |
853 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 853 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
854 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 854 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |