| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 'unix': { | 370 'unix': { |
| 371 # Linux, really. | 371 # Linux, really. |
| 372 'src/third_party/xdg-utils': | 372 'src/third_party/xdg-utils': |
| 373 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 373 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| 374 | 374 |
| 375 'src/third_party/lss': | 375 'src/third_party/lss': |
| 376 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 376 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 377 | 377 |
| 378 # For Linux and Chromium OS. | 378 # For Linux and Chromium OS. |
| 379 'src/third_party/cros_system_api': | 379 'src/third_party/cros_system_api': |
| 380 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '2f7d28
49ad7d9fb8f82a19cedb1b972fda6be98c', | 380 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '3debeb
88a7af4f15535ead5e05c0aacb04c3b458', |
| 381 | 381 |
| 382 # Note that this is different from Android's freetype repo. | 382 # Note that this is different from Android's freetype repo. |
| 383 'src/third_party/freetype2/src': | 383 'src/third_party/freetype2/src': |
| 384 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 384 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 385 | 385 |
| 386 'src/third_party/freetype-android/src': | 386 'src/third_party/freetype-android/src': |
| 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 388 | 388 |
| 389 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 389 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 390 'src/third_party/chromite': | 390 'src/third_party/chromite': |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 { | 843 { |
| 844 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 844 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 845 'name': 'gyp', | 845 'name': 'gyp', |
| 846 'pattern': '.', | 846 'pattern': '.', |
| 847 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 847 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 848 }, | 848 }, |
| 849 ] | 849 ] |
| 850 | 850 |
| 851 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 851 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 852 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 852 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |