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 # DevTools node modules. Used on Linux buildbots only. | 455 # DevTools node modules. Used on Linux buildbots only. |
456 'src/third_party/WebKit/Source/devtools/devtools-node-modules': | 456 'src/third_party/WebKit/Source/devtools/devtools-node-modules': |
457 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') | 457 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') |
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' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', | 464 Var('chromium_git') + '/android_tools.git' + '@' + 'b65c4776dac2cf1b80e969
b3b2d4e081b9c84f29', |
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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1142 recursedeps = [ | 1142 recursedeps = [ |
1143 # buildtools provides clang_format, libc++, and libc++abi | 1143 # buildtools provides clang_format, libc++, and libc++abi |
1144 'src/buildtools', | 1144 'src/buildtools', |
1145 # android_tools manages the NDK. | 1145 # android_tools manages the NDK. |
1146 'src/third_party/android_tools', | 1146 'src/third_party/android_tools', |
1147 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1147 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1148 ("src/third_party/angle", "DEPS.chromium"), | 1148 ("src/third_party/angle", "DEPS.chromium"), |
1149 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1149 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
1150 ("src/third_party/swiftshader", "DEPS"), | 1150 ("src/third_party/swiftshader", "DEPS"), |
1151 ] | 1151 ] |
OLD | NEW |