| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'unix': { | 373 'unix': { |
| 374 # Linux, really. | 374 # Linux, really. |
| 375 'src/third_party/xdg-utils': | 375 'src/third_party/xdg-utils': |
| 376 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 376 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| 377 | 377 |
| 378 'src/third_party/lss': | 378 'src/third_party/lss': |
| 379 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 379 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 380 | 380 |
| 381 # For Linux and Chromium OS. | 381 # For Linux and Chromium OS. |
| 382 'src/third_party/cros_system_api': | 382 'src/third_party/cros_system_api': |
| 383 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '4b9361
10e07abfa7b582e15af36d805bef25318b', | 383 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'a887ad
7e1a3058bb4f0c8a0e90e498c24ca32d80', |
| 384 | 384 |
| 385 # Note that this is different from Android's freetype repo. | 385 # Note that this is different from Android's freetype repo. |
| 386 'src/third_party/freetype2/src': | 386 'src/third_party/freetype2/src': |
| 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 388 | 388 |
| 389 'src/third_party/freetype-android/src': | 389 'src/third_party/freetype-android/src': |
| 390 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 390 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 391 | 391 |
| 392 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 392 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 393 'src/third_party/chromite': | 393 'src/third_party/chromite': |
| (...skipping 452 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 |