| 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' + '@' + '09307e531
e9b0302b2c36686d9e9c6854d2d6996', # commit position 17210 | 235 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '09307e531
e9b0302b2c36686d9e9c6854d2d6996', # commit position 17210 |
| 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' + '@' + '0741a3d70400dc96e5972667
4b0acf3bca02d710', | 244 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '2adb84e39e360723d19c68f3
15d99e3e0f88318c', # from r1650 |
| 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 recursedeps = [ | 1149 recursedeps = [ |
| 1150 # buildtools provides clang_format, libc++, and libc++abi | 1150 # buildtools provides clang_format, libc++, and libc++abi |
| 1151 'src/buildtools', | 1151 'src/buildtools', |
| 1152 # android_tools manages the NDK. | 1152 # android_tools manages the NDK. |
| 1153 'src/third_party/android_tools', | 1153 'src/third_party/android_tools', |
| 1154 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1154 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1155 ("src/third_party/angle", "DEPS.chromium"), | 1155 ("src/third_party/angle", "DEPS.chromium"), |
| 1156 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1156 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1157 ("src/third_party/swiftshader", "DEPS"), | 1157 ("src/third_party/swiftshader", "DEPS"), |
| 1158 ] | 1158 ] |
| OLD | NEW |