| 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 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1224 { | 1224 { |
| 1225 # Pull doclava binaries if building for Android. | 1225 # Pull doclava binaries if building for Android. |
| 1226 'name': 'doclava', | 1226 'name': 'doclava', |
| 1227 'pattern': '.', | 1227 'pattern': '.', |
| 1228 'action': ['python', | 1228 'action': ['python', |
| 1229 'src/build/android/download_doclava.py', | 1229 'src/build/android/download_doclava.py', |
| 1230 ], | 1230 ], |
| 1231 }, | 1231 }, |
| 1232 | 1232 |
| 1233 { | 1233 { |
| 1234 # Clear dependencies for libadblockplus (otherwise ensure_dependencies wil
l fail to check deps revisions) |
| 1235 'name': 'libadblockplus_clear_dependencies', |
| 1236 'pattern': 'dependencies', |
| 1237 'condition': 'checkout_android', |
| 1238 'action': [ |
| 1239 'python', |
| 1240 'src/third_party/libadblockplus/clear_dependencies.py' |
| 1241 ], |
| 1242 }, |
| 1243 |
| 1244 { |
| 1234 # Download dependencies for libadblockplus. | 1245 # Download dependencies for libadblockplus. |
| 1235 'name': 'libadblockplus_ensure_dependencies', | 1246 'name': 'libadblockplus_ensure_dependencies', |
| 1236 'pattern': 'dependencies', | 1247 'pattern': 'dependencies', |
| 1237 'condition': 'checkout_android', | 1248 'condition': 'checkout_android', |
| 1238 'action': [ | 1249 'action': [ |
| 1239 'python', | 1250 'python', |
| 1240 'src/third_party/libadblockplus/ensure_dependencies.py' | 1251 'src/third_party/libadblockplus/ensure_dependencies.py' |
| 1241 ], | 1252 ], |
| 1242 }, | 1253 }, |
| 1243 | 1254 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 } | 1308 } |
| 1298 | 1309 |
| 1299 recursedeps = [ | 1310 recursedeps = [ |
| 1300 # buildtools provides clang_format, libc++, and libc++abi | 1311 # buildtools provides clang_format, libc++, and libc++abi |
| 1301 'src/buildtools', | 1312 'src/buildtools', |
| 1302 # android_tools manages the NDK. | 1313 # android_tools manages the NDK. |
| 1303 'src/third_party/android_tools', | 1314 'src/third_party/android_tools', |
| 1304 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1315 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1305 ("src/third_party/angle", "DEPS.chromium"), | 1316 ("src/third_party/angle", "DEPS.chromium"), |
| 1306 ] | 1317 ] |
| OLD | NEW |