| 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 # Used for embedded builds. CrOS & Linux use the system version. | 409 # Used for embedded builds. CrOS & Linux use the system version. |
| 410 'src/third_party/fontconfig/src': | 410 'src/third_party/fontconfig/src': |
| 411 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 411 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 412 | 412 |
| 413 # ANGLE uses dEQP for GPU testing | 413 # ANGLE uses dEQP for GPU testing |
| 414 'src/third_party/deqp/src': | 414 'src/third_party/deqp/src': |
| 415 Var('deqp_url') + '@' + Var('deqp_revision'), | 415 Var('deqp_url') + '@' + Var('deqp_revision'), |
| 416 | 416 |
| 417 # Graphics buffer allocator for Chrome OS. | 417 # Graphics buffer allocator for Chrome OS. |
| 418 'src/third_party/minigbm/src': | 418 'src/third_party/minigbm/src': |
| 419 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '1e2293992
28ac107e8ae0f73a466e3ea17fe5839', | 419 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9e7c4c8e
91fb354abf714c7a5c89b4990814ff3', |
| 420 | 420 |
| 421 # Display server protocol for Linux. | 421 # Display server protocol for Linux. |
| 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. |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 'src/build/android/download_doclava.py', | 852 'src/build/android/download_doclava.py', |
| 853 ], | 853 ], |
| 854 }, | 854 }, |
| 855 { | 855 { |
| 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 857 'name': 'gyp', | 857 'name': 'gyp', |
| 858 'pattern': '.', | 858 'pattern': '.', |
| 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 860 }, | 860 }, |
| 861 ] | 861 ] |
| OLD | NEW |