| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 369 |
| 370 'src/third_party/lss': | 370 'src/third_party/lss': |
| 371 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 371 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 372 | 372 |
| 373 # For Linux and Chromium OS. | 373 # For Linux and Chromium OS. |
| 374 'src/third_party/cros_system_api': | 374 'src/third_party/cros_system_api': |
| 375 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '2cf876
23ebe64dbff665490900713695ba7c5113', | 375 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '2cf876
23ebe64dbff665490900713695ba7c5113', |
| 376 | 376 |
| 377 # Note that this is different from Android's freetype repo. | 377 # Note that this is different from Android's freetype repo. |
| 378 'src/third_party/freetype2/src': | 378 'src/third_party/freetype2/src': |
| 379 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 379 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '44
accb9e2e5b00696cf50a869b68afa2ce3dd389', |
| 380 | 380 |
| 381 'src/third_party/freetype-android/src': | 381 'src/third_party/freetype-android/src': |
| 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 383 | 383 |
| 384 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 384 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 385 'src/third_party/chromite': | 385 'src/third_party/chromite': |
| 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '8c1b19c098bd84bde
fdea93da75821b082f0b395', | 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '8c1b19c098bd84bde
fdea93da75821b082f0b395', |
| 387 | 387 |
| 388 # Dependency of chromite.git and skia. | 388 # Dependency of chromite.git and skia. |
| 389 'src/third_party/pyelftools': | 389 'src/third_party/pyelftools': |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 { | 889 { |
| 890 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 890 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 891 'name': 'gyp', | 891 'name': 'gyp', |
| 892 'pattern': '.', | 892 'pattern': '.', |
| 893 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 893 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 894 }, | 894 }, |
| 895 ] | 895 ] |
| 896 | 896 |
| 897 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 897 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 898 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 898 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |