| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 458 |
| 459 # DevTools node modules. Used on Linux buildbots only. | 459 # DevTools node modules. Used on Linux buildbots only. |
| 460 'src/third_party/WebKit/Source/devtools/devtools-node-modules': | 460 'src/third_party/WebKit/Source/devtools/devtools-node-modules': |
| 461 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') | 461 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') |
| 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' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', |
| 466 | 466 |
| 467 'src/third_party/android_tools': | 467 'src/third_party/android_tools': |
| 468 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', | 468 Var('chromium_git') + '/android_tools.git' + '@' + 'e429db7f48cd615b0b408c
da259ffbc17d3945bb', |
| 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 |
| 476 'src/third_party/findbugs': | 476 'src/third_party/findbugs': |
| 477 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac7
7ea0a194813d3065dd780c6e566', | 477 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac7
7ea0a194813d3065dd780c6e566', |
| 478 | 478 |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 ] | 1136 ] |
| 1137 | 1137 |
| 1138 recursedeps = [ | 1138 recursedeps = [ |
| 1139 # buildtools provides clang_format, libc++, and libc++abi | 1139 # buildtools provides clang_format, libc++, and libc++abi |
| 1140 'src/buildtools', | 1140 'src/buildtools', |
| 1141 # android_tools manages the NDK. | 1141 # android_tools manages the NDK. |
| 1142 'src/third_party/android_tools', | 1142 'src/third_party/android_tools', |
| 1143 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1143 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1144 ("src/third_party/angle", "DEPS.chromium"), | 1144 ("src/third_party/angle", "DEPS.chromium"), |
| 1145 ] | 1145 ] |
| OLD | NEW |