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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'src/third_party/libvpx/source/libvpx': | 194 'src/third_party/libvpx/source/libvpx': |
195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '99ef84c65a2b5760bec5d9300
974946303090afb', | 195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '99ef84c65a2b5760bec5d9300
974946303090afb', |
196 | 196 |
197 'src/third_party/ffmpeg': | 197 'src/third_party/ffmpeg': |
198 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '3c7a098821
02bfd6fecdb9d7296f43a8501db95e', | 198 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '3c7a098821
02bfd6fecdb9d7296f43a8501db95e', |
199 | 199 |
200 'src/third_party/usrsctp/usrsctplib': | 200 'src/third_party/usrsctp/usrsctplib': |
201 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7f9228
152ab3d70e6848cc9c67389a0d4218740e', | 201 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7f9228
152ab3d70e6848cc9c67389a0d4218740e', |
202 | 202 |
203 'src/third_party/libsrtp': | 203 'src/third_party/libsrtp': |
204 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '48bdd208dcdbb018
c4a154cf260414dbdfabb86d', # from svn revision 295151 | 204 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'b17c065a8a63725e
ca216fd461984f82c331dd07', |
205 | 205 |
206 'src/third_party/yasm/source/patched-yasm': | 206 'src/third_party/yasm/source/patched-yasm': |
207 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c
6c7c6a1387217352ce02b31754deb54d2a', | 207 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c
6c7c6a1387217352ce02b31754deb54d2a', |
208 | 208 |
209 'src/third_party/libjpeg_turbo': | 209 'src/third_party/libjpeg_turbo': |
210 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7260e4d8b8
e1e40b17f03fafdf1cd83296900f76', | 210 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7260e4d8b8
e1e40b17f03fafdf1cd83296900f76', |
211 | 211 |
212 'src/third_party/flac': | 212 'src/third_party/flac': |
213 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'd0c35f878ec26f969c1
631350b1d36fbd88ad8bb', | 213 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'd0c35f878ec26f969c1
631350b1d36fbd88ad8bb', |
214 | 214 |
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 ], | 1016 ], |
1017 }, | 1017 }, |
1018 ] | 1018 ] |
1019 | 1019 |
1020 recursedeps = [ | 1020 recursedeps = [ |
1021 # android_tools manages the NDK. | 1021 # android_tools manages the NDK. |
1022 'src/third_party/android_tools', | 1022 'src/third_party/android_tools', |
1023 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1023 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1024 ("src/third_party/angle", "DEPS.chromium"), | 1024 ("src/third_party/angle", "DEPS.chromium"), |
1025 ] | 1025 ] |
OLD | NEW |