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 # Display server protocol for Linux. | 415 # Display server protocol for Linux. |
416 'src/third_party/wayland/src': | 416 'src/third_party/wayland/src': |
417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', | 417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', |
418 | 418 |
419 # Wayland protocols that add functionality not available in the core protoco
l. | 419 # Wayland protocols that add functionality not available in the core protoco
l. |
420 'src/third_party/wayland-protocols/src': | 420 'src/third_party/wayland-protocols/src': |
421 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '596dfda882a51c05699bcb28a8459ce936a138db', | 421 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '596dfda882a51c05699bcb28a8459ce936a138db', |
422 | 422 |
423 # Wireless Display Software. Used on Chrome OS. | 423 # Wireless Display Software. Used on Chrome OS. |
424 'src/third_party/wds/src': | 424 'src/third_party/wds/src': |
425 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'f187dda5fcc
aad08e168dc6657109325f42c648e', | 425 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', |
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' + '@' + 'adfd31794011488cd0fc716
b53558b2d8a67af8b', | 432 Var('chromium_git') + '/android_tools.git' + '@' + 'adfd31794011488cd0fc716
b53558b2d8a67af8b', |
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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 'src/build/android/download_doclava.py', | 846 'src/build/android/download_doclava.py', |
847 ], | 847 ], |
848 }, | 848 }, |
849 { | 849 { |
850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
851 'name': 'gyp', | 851 'name': 'gyp', |
852 'pattern': '.', | 852 'pattern': '.', |
853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
854 }, | 854 }, |
855 ] | 855 ] |
OLD | NEW |