| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 'unix': { | 379 'unix': { |
| 380 # Linux, really. | 380 # Linux, really. |
| 381 'src/third_party/xdg-utils': | 381 'src/third_party/xdg-utils': |
| 382 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 382 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| 383 | 383 |
| 384 'src/third_party/lss': | 384 'src/third_party/lss': |
| 385 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 385 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 386 | 386 |
| 387 # For Linux and Chromium OS. | 387 # For Linux and Chromium OS. |
| 388 'src/third_party/cros_system_api': | 388 'src/third_party/cros_system_api': |
| 389 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '534baa
06a1052edfd12bf95fa7786f0ba259e9fb', | 389 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '1929df
e2052827b3fee0974844cfbfff4f22cca3', |
| 390 | 390 |
| 391 # Note that this is different from Android's freetype repo. | 391 # Note that this is different from Android's freetype repo. |
| 392 'src/third_party/freetype2/src': | 392 'src/third_party/freetype2/src': |
| 393 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 393 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 394 | 394 |
| 395 'src/third_party/freetype-android/src': | 395 'src/third_party/freetype-android/src': |
| 396 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 396 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 397 | 397 |
| 398 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 398 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 399 'src/third_party/chromite': | 399 'src/third_party/chromite': |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 'src/build/android/download_doclava.py', | 853 'src/build/android/download_doclava.py', |
| 854 ], | 854 ], |
| 855 }, | 855 }, |
| 856 { | 856 { |
| 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 858 'name': 'gyp', | 858 'name': 'gyp', |
| 859 'pattern': '.', | 859 'pattern': '.', |
| 860 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 860 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 861 }, | 861 }, |
| 862 ] | 862 ] |
| OLD | NEW |