| 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' + '@' + '294a734a5f12037d7091e50e0
ac17a048589f479', | 195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '294a734a5f12037d7091e50e0
ac17a048589f479', |
| 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' + '@' + 'b17c065a8a63725e
ca216fd461984f82c331dd07', | 204 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '71692eaab2a06bbd
87a551614a8791c7caa7e266', |
| 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 ] | 1019 ] |
| 1020 | 1020 |
| 1021 recursedeps = [ | 1021 recursedeps = [ |
| 1022 # buildtools provides clang_format, libc++, and libc++abi | 1022 # buildtools provides clang_format, libc++, and libc++abi |
| 1023 'src/buildtools', | 1023 'src/buildtools', |
| 1024 # android_tools manages the NDK. | 1024 # android_tools manages the NDK. |
| 1025 'src/third_party/android_tools', | 1025 'src/third_party/android_tools', |
| 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1027 ("src/third_party/angle", "DEPS.chromium"), | 1027 ("src/third_party/angle", "DEPS.chromium"), |
| 1028 ] | 1028 ] |
| OLD | NEW |