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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 'src/third_party/minigbm/src': | 423 'src/third_party/minigbm/src': |
424 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9d2ab79a
15a1bb6a1307f3b608964c81c27791b', | 424 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9d2ab79a
15a1bb6a1307f3b608964c81c27791b', |
425 | 425 |
426 # Display server protocol for Linux. | 426 # Display server protocol for Linux. |
427 'src/third_party/wayland/src': | 427 'src/third_party/wayland/src': |
428 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', | 428 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', |
429 | 429 |
430 # Wayland protocols that add functionality not available in the core protoco
l. | 430 # Wayland protocols that add functionality not available in the core protoco
l. |
431 'src/third_party/wayland-protocols/src': | 431 'src/third_party/wayland-protocols/src': |
432 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '3543bb755c8858b0a70dfd20fd1beb74d865751d', | 432 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '3543bb755c8858b0a70dfd20fd1beb74d865751d', |
| 433 |
| 434 # Wireless Display Software. Used on Chrome OS. |
| 435 'src/third_party/wds/src': |
| 436 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'f187dda5fcc
aad08e168dc6657109325f42c648e', |
433 }, | 437 }, |
434 'android': { | 438 'android': { |
435 'src/third_party/android_protobuf/src': | 439 'src/third_party/android_protobuf/src': |
436 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 440 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
437 | 441 |
438 'src/third_party/android_tools': | 442 'src/third_party/android_tools': |
439 Var('chromium_git') + '/android_tools.git' + '@' + 'f4c36ad89b2696b37d9cd7c
a7d984b691888b188', | 443 Var('chromium_git') + '/android_tools.git' + '@' + 'f4c36ad89b2696b37d9cd7c
a7d984b691888b188', |
440 | 444 |
441 'src/third_party/apache-mime4j': | 445 'src/third_party/apache-mime4j': |
442 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 446 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 'src/tools', | 833 'src/tools', |
830 ], | 834 ], |
831 }, | 835 }, |
832 { | 836 { |
833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
834 'name': 'gyp', | 838 'name': 'gyp', |
835 'pattern': '.', | 839 'pattern': '.', |
836 'action': ['python', 'src/build/gyp_chromium'], | 840 'action': ['python', 'src/build/gyp_chromium'], |
837 }, | 841 }, |
838 ] | 842 ] |
OLD | NEW |