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