| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Explicit Synchronization. | 459 # Android Explicit Synchronization. |
| 460 'src/third_party/libsync/src': | 460 'src/third_party/libsync/src': |
| 461 Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'aa
6cda6f638bd57d3a024f0d201f723a5c3bb875', | 461 Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'aa
6cda6f638bd57d3a024f0d201f723a5c3bb875', |
| 462 }, | 462 }, |
| 463 'android': { | 463 'android': { |
| 464 'src/third_party/android_protobuf/src': | 464 'src/third_party/android_protobuf/src': |
| 465 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', | 465 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '7fca48d8ce
97f7ba3ab8eea5c472f1ad3711762f', |
| 466 | 466 |
| 467 'src/third_party/android_tools': | 467 'src/third_party/android_tools': |
| 468 Var('chromium_git') + '/android_tools.git' + '@' + '023e2f65409a2b7886b8d6
44d6a88542ead6cd0a', | 468 Var('chromium_git') + '/android_tools.git' + '@' + '023e2f65409a2b7886b8d6
44d6a88542ead6cd0a', |
| 469 | 469 |
| 470 'src/third_party/apache-portable-runtime/src': | 470 'src/third_party/apache-portable-runtime/src': |
| 471 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', | 471 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', |
| 472 | 472 |
| 473 'src/third_party/errorprone/lib': | 473 'src/third_party/errorprone/lib': |
| 474 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 474 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
| 475 | 475 |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 } | 1208 } |
| 1209 | 1209 |
| 1210 recursedeps = [ | 1210 recursedeps = [ |
| 1211 # buildtools provides clang_format, libc++, and libc++abi | 1211 # buildtools provides clang_format, libc++, and libc++abi |
| 1212 'src/buildtools', | 1212 'src/buildtools', |
| 1213 # android_tools manages the NDK. | 1213 # android_tools manages the NDK. |
| 1214 'src/third_party/android_tools', | 1214 'src/third_party/android_tools', |
| 1215 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1215 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1216 ("src/third_party/angle", "DEPS.chromium"), | 1216 ("src/third_party/angle", "DEPS.chromium"), |
| 1217 ] | 1217 ] |
| OLD | NEW |