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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 'src/third_party/wayland/src': | 422 'src/third_party/wayland/src': |
423 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', | 423 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', |
424 | 424 |
425 # Wayland protocols that add functionality not available in the core protoco
l. | 425 # Wayland protocols that add functionality not available in the core protoco
l. |
426 'src/third_party/wayland-protocols/src': | 426 'src/third_party/wayland-protocols/src': |
427 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '83bdaa5cff369cc631d0191eb75a6a798976c638', | 427 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '83bdaa5cff369cc631d0191eb75a6a798976c638', |
428 | 428 |
429 # Wireless Display Software. Used on Chrome OS. | 429 # Wireless Display Software. Used on Chrome OS. |
430 'src/third_party/wds/src': | 430 'src/third_party/wds/src': |
431 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', | 431 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', |
| 432 |
| 433 # gRPC, an RPC framework. For Blimp use only. |
| 434 'src/third_party/grpc': |
| 435 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'c1f618fb61b
5258c1718e7ae60a6a7dbf6f912fb', |
432 }, | 436 }, |
433 'android': { | 437 'android': { |
434 'src/third_party/android_protobuf/src': | 438 'src/third_party/android_protobuf/src': |
435 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 439 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
436 | 440 |
437 'src/third_party/android_tools': | 441 'src/third_party/android_tools': |
438 Var('chromium_git') + '/android_tools.git' + '@' + '5b5f2f60b78198eaef25d44
2ac60f823142a8a6e', | 442 Var('chromium_git') + '/android_tools.git' + '@' + '5b5f2f60b78198eaef25d44
2ac60f823142a8a6e', |
439 | 443 |
440 'src/third_party/apache-mime4j': | 444 'src/third_party/apache-mime4j': |
441 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 445 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 'src/build/android/download_doclava.py', | 857 'src/build/android/download_doclava.py', |
854 ], | 858 ], |
855 }, | 859 }, |
856 { | 860 { |
857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 861 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
858 'name': 'gyp', | 862 'name': 'gyp', |
859 'pattern': '.', | 863 'pattern': '.', |
860 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 864 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
861 }, | 865 }, |
862 ] | 866 ] |
OLD | NEW |