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