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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 'src/third_party/fontconfig/src': | 411 'src/third_party/fontconfig/src': |
412 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 412 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
413 | 413 |
414 # ANGLE uses dEQP for GPU testing | 414 # ANGLE uses dEQP for GPU testing |
415 'src/third_party/deqp/src': | 415 'src/third_party/deqp/src': |
416 Var('deqp_url') + '@' + Var('deqp_revision'), | 416 Var('deqp_url') + '@' + Var('deqp_revision'), |
417 | 417 |
418 # Graphics buffer allocator for Chrome OS. | 418 # Graphics buffer allocator for Chrome OS. |
419 'src/third_party/minigbm/src': | 419 'src/third_party/minigbm/src': |
420 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9d2ab79a
15a1bb6a1307f3b608964c81c27791b', | 420 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9d2ab79a
15a1bb6a1307f3b608964c81c27791b', |
| 421 |
| 422 # Display server protocol for Linux. |
| 423 'src/third_party/wayland/src': |
| 424 Var('chromium_git') + '/external/wayland/wayland.git' + '@' + 'b05668f0ad64
ad9ba82e124965163daed4172ead', |
421 }, | 425 }, |
422 'android': { | 426 'android': { |
423 'src/third_party/android_protobuf/src': | 427 'src/third_party/android_protobuf/src': |
424 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 428 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
425 | 429 |
426 'src/third_party/android_tools': | 430 'src/third_party/android_tools': |
427 Var('chromium_git') + '/android_tools.git' + '@' + '54492f99c84cab0826a8e65
6efeb33a1b1bf5a04', | 431 Var('chromium_git') + '/android_tools.git' + '@' + '54492f99c84cab0826a8e65
6efeb33a1b1bf5a04', |
428 | 432 |
429 'src/third_party/apache-mime4j': | 433 'src/third_party/apache-mime4j': |
430 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 434 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 }, | 813 }, |
810 { | 814 { |
811 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 815 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
812 'name': 'gyp', | 816 'name': 'gyp', |
813 'pattern': '.', | 817 'pattern': '.', |
814 'action': ['python', 'src/build/gyp_chromium'], | 818 'action': ['python', 'src/build/gyp_chromium'], |
815 }, | 819 }, |
816 ] | 820 ] |
817 | 821 |
818 | 822 |
OLD | NEW |