| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 'src/third_party/webrtc': | 234 'src/third_party/webrtc': |
| 235 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '01915025b
c1873e556d09b5083b5d7ccc31da068', # commit position 18252 | 235 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '01915025b
c1873e556d09b5083b5d7ccc31da068', # commit position 18252 |
| 236 | 236 |
| 237 'src/third_party/openmax_dl': | 237 'src/third_party/openmax_dl': |
| 238 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 238 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
| 239 | 239 |
| 240 'src/third_party/jsoncpp/source': | 240 'src/third_party/jsoncpp/source': |
| 241 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 | 241 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 242 | 242 |
| 243 'src/third_party/libyuv': | 243 'src/third_party/libyuv': |
| 244 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '945ea1b7463004581502ebbc
fc5a0b2f54ff6867', # from r1655 | 244 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '8edd2286fdf9df2b9da806bd
a7ed262492f95921', # from r1655 |
| 245 | 245 |
| 246 'src/third_party/smhasher/src': | 246 'src/third_party/smhasher/src': |
| 247 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 247 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 248 | 248 |
| 249 'src/third_party/libaddressinput/src': | 249 'src/third_party/libaddressinput/src': |
| 250 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '4d18a0d4be9ad
d0dc479e7b939ed8d39f6ec0d73', | 250 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '4d18a0d4be9ad
d0dc479e7b939ed8d39f6ec0d73', |
| 251 | 251 |
| 252 'src/third_party/libphonenumber/dist': | 252 'src/third_party/libphonenumber/dist': |
| 253 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', | 253 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', |
| 254 | 254 |
| (...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 } | 1172 } |
| 1173 | 1173 |
| 1174 recursedeps = [ | 1174 recursedeps = [ |
| 1175 # buildtools provides clang_format, libc++, and libc++abi | 1175 # buildtools provides clang_format, libc++, and libc++abi |
| 1176 'src/buildtools', | 1176 'src/buildtools', |
| 1177 # android_tools manages the NDK. | 1177 # android_tools manages the NDK. |
| 1178 'src/third_party/android_tools', | 1178 'src/third_party/android_tools', |
| 1179 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1179 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1180 ("src/third_party/angle", "DEPS.chromium"), | 1180 ("src/third_party/angle", "DEPS.chromium"), |
| 1181 ] | 1181 ] |
| OLD | NEW |