| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 # Wayland protocols that add functionality not available in the core protoco
l. | 420 # Wayland protocols that add functionality not available in the core protoco
l. |
| 421 'src/third_party/wayland-protocols/src': | 421 'src/third_party/wayland-protocols/src': |
| 422 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', | 422 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
| 423 | 423 |
| 424 # Wireless Display Software. Used on Chrome OS. | 424 # Wireless Display Software. Used on Chrome OS. |
| 425 'src/third_party/wds/src': | 425 'src/third_party/wds/src': |
| 426 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', | 426 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', |
| 427 | 427 |
| 428 # gRPC, an RPC framework. For Blimp use only. | 428 # gRPC, an RPC framework. For Blimp use only. |
| 429 'src/third_party/grpc': | 429 'src/third_party/grpc': |
| 430 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'b4cc5fc16c
1368149c8a20c51248a18009ff8254', | 430 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '5945dfa700
a0566be7ea6691cc8a86ecb4a53924', |
| 431 | 431 |
| 432 # DevTools node modules. Used on Linux buildbots only. | 432 # DevTools node modules. Used on Linux buildbots only. |
| 433 'src/third_party/WebKit/Source/devtools/devtools-node-modules': | 433 'src/third_party/WebKit/Source/devtools/devtools-node-modules': |
| 434 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') | 434 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-m
odules' + '@' + Var('devtools_node_modules_revision') |
| 435 }, | 435 }, |
| 436 'android': { | 436 'android': { |
| 437 'src/third_party/android_protobuf/src': | 437 'src/third_party/android_protobuf/src': |
| 438 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', | 438 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', |
| 439 | 439 |
| 440 'src/third_party/android_tools': | 440 'src/third_party/android_tools': |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 ] | 1080 ] |
| 1081 | 1081 |
| 1082 recursedeps = [ | 1082 recursedeps = [ |
| 1083 # buildtools provides clang_format, libc++, and libc++abi | 1083 # buildtools provides clang_format, libc++, and libc++abi |
| 1084 'src/buildtools', | 1084 'src/buildtools', |
| 1085 # android_tools manages the NDK. | 1085 # android_tools manages the NDK. |
| 1086 'src/third_party/android_tools', | 1086 'src/third_party/android_tools', |
| 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1088 ("src/third_party/angle", "DEPS.chromium"), | 1088 ("src/third_party/angle", "DEPS.chromium"), |
| 1089 ] | 1089 ] |
| OLD | NEW |