| 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 | 370 |
| 371 # Note that this is different from Android's freetype repo. | 371 # Note that this is different from Android's freetype repo. |
| 372 'src/third_party/freetype2/src': | 372 'src/third_party/freetype2/src': |
| 373 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 373 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 374 | 374 |
| 375 'src/third_party/freetype-android/src': | 375 'src/third_party/freetype-android/src': |
| 376 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 376 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 377 | 377 |
| 378 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 378 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 379 'src/third_party/chromite': | 379 'src/third_party/chromite': |
| 380 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '8c1b19c098bd84bde
fdea93da75821b082f0b395', | 380 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '6da947426f1479bd1
48fcec6543eb5baac1ea401', |
| 381 | 381 |
| 382 # Dependency of chromite.git and skia. | 382 # Dependency of chromite.git and skia. |
| 383 'src/third_party/pyelftools': | 383 'src/third_party/pyelftools': |
| 384 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 384 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
| 385 | 385 |
| 386 'src/third_party/liblouis/src': | 386 'src/third_party/liblouis/src': |
| 387 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 387 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
| 388 | 388 |
| 389 # Used for embedded builds. CrOS & Linux use the system version. | 389 # Used for embedded builds. CrOS & Linux use the system version. |
| 390 'src/third_party/fontconfig/src': | 390 'src/third_party/fontconfig/src': |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 { | 954 { |
| 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 956 'name': 'gyp', | 956 'name': 'gyp', |
| 957 'pattern': '.', | 957 'pattern': '.', |
| 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 959 }, | 959 }, |
| 960 ] | 960 ] |
| 961 | 961 |
| 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |