| 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 | 457 |
| 458 # Minizip library. Used on Chrome OS. | 458 # Minizip library. Used on Chrome OS. |
| 459 'src/third_party/minizip/src': | 459 'src/third_party/minizip/src': |
| 460 Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + 'dc3
ad01e3d5928e9105f770b7e896a8e9fe0d3b4', | 460 Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + 'dc3
ad01e3d5928e9105f770b7e896a8e9fe0d3b4', |
| 461 }, | 461 }, |
| 462 'android': { | 462 'android': { |
| 463 'src/third_party/android_protobuf/src': | 463 'src/third_party/android_protobuf/src': |
| 464 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', | 464 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', |
| 465 | 465 |
| 466 'src/third_party/android_tools': | 466 'src/third_party/android_tools': |
| 467 Var('chromium_git') + '/android_tools.git' + '@' + 'cb6bc21107001e2f2eeee2
707b482b2b755baf51', | 467 Var('chromium_git') + '/android_tools.git' + '@' + '023e2f65409a2b7886b8d6
44d6a88542ead6cd0a', |
| 468 | 468 |
| 469 'src/third_party/apache-portable-runtime/src': | 469 'src/third_party/apache-portable-runtime/src': |
| 470 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', | 470 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', |
| 471 | 471 |
| 472 'src/third_party/errorprone/lib': | 472 'src/third_party/errorprone/lib': |
| 473 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 473 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
| 474 | 474 |
| 475 'src/third_party/findbugs': | 475 'src/third_party/findbugs': |
| 476 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac7
7ea0a194813d3065dd780c6e566', | 476 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac7
7ea0a194813d3065dd780c6e566', |
| 477 | 477 |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 } | 1196 } |
| 1197 | 1197 |
| 1198 recursedeps = [ | 1198 recursedeps = [ |
| 1199 # buildtools provides clang_format, libc++, and libc++abi | 1199 # buildtools provides clang_format, libc++, and libc++abi |
| 1200 'src/buildtools', | 1200 'src/buildtools', |
| 1201 # android_tools manages the NDK. | 1201 # android_tools manages the NDK. |
| 1202 'src/third_party/android_tools', | 1202 'src/third_party/android_tools', |
| 1203 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1203 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1204 ("src/third_party/angle", "DEPS.chromium"), | 1204 ("src/third_party/angle", "DEPS.chromium"), |
| 1205 ] | 1205 ] |
| OLD | NEW |