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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 'src/third_party/bidichecker': | 185 'src/third_party/bidichecker': |
186 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 186 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
187 | 187 |
188 'src/third_party/webgl/src': | 188 'src/third_party/webgl/src': |
189 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '579c7f930d
86137af07b4b6fedd2991742e48e45', | 189 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '579c7f930d
86137af07b4b6fedd2991742e48e45', |
190 | 190 |
191 'src/third_party/webdriver/pylib': | 191 'src/third_party/webdriver/pylib': |
192 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 192 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
193 | 193 |
194 'src/third_party/libvpx/source/libvpx': | 194 'src/third_party/libvpx/source/libvpx': |
195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '9a032fa2628ee55ec557d2c03
fb09ead796eea3d', | 195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '1961a92a940ce73bb4f522c3e
87b1fbdea216112', |
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' + '@' + '71692eaab2a06bbd
87a551614a8791c7caa7e266', | 204 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '71692eaab2a06bbd
87a551614a8791c7caa7e266', |
205 | 205 |
(...skipping 813 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 |