| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 # Wayland protocols that add functionality not available in the core protoco
l. | 415 # Wayland protocols that add functionality not available in the core protoco
l. |
| 416 'src/third_party/wayland-protocols/src': | 416 'src/third_party/wayland-protocols/src': |
| 417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '65d09ef404fb26cb513f4f836e904f415c425a8f', | 417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '65d09ef404fb26cb513f4f836e904f415c425a8f', |
| 418 | 418 |
| 419 # Wireless Display Software. Used on Chrome OS. | 419 # Wireless Display Software. Used on Chrome OS. |
| 420 'src/third_party/wds/src': | 420 'src/third_party/wds/src': |
| 421 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', | 421 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', |
| 422 | 422 |
| 423 # gRPC, an RPC framework. For Blimp use only. | 423 # gRPC, an RPC framework. For Blimp use only. |
| 424 'src/third_party/grpc': | 424 'src/third_party/grpc': |
| 425 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '3334ae71dca
1c60ede931898ebee002f001ab755', | 425 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'dc44fe515c8
c30093ea8b2f14230123959c886e8', |
| 426 }, | 426 }, |
| 427 'android': { | 427 'android': { |
| 428 'src/third_party/android_protobuf/src': | 428 'src/third_party/android_protobuf/src': |
| 429 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 429 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
| 430 | 430 |
| 431 'src/third_party/android_tools': | 431 'src/third_party/android_tools': |
| 432 Var('chromium_git') + '/android_tools.git' + '@' + 'af1c5a4cd6329ccdcf8c2bc
93d9eea02f9d74869', | 432 Var('chromium_git') + '/android_tools.git' + '@' + 'af1c5a4cd6329ccdcf8c2bc
93d9eea02f9d74869', |
| 433 | 433 |
| 434 'src/third_party/apache-mime4j': | 434 'src/third_party/apache-mime4j': |
| 435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 'name': 'doclava', | 1004 'name': 'doclava', |
| 1005 'pattern': '.', | 1005 'pattern': '.', |
| 1006 'action': ['python', | 1006 'action': ['python', |
| 1007 'src/build/android/download_doclava.py', | 1007 'src/build/android/download_doclava.py', |
| 1008 ], | 1008 ], |
| 1009 }, | 1009 }, |
| 1010 ] | 1010 ] |
| 1011 | 1011 |
| 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |