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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', | 384 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', |
385 | 385 |
386 'src/third_party/xdg-utils': | 386 'src/third_party/xdg-utils': |
387 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 387 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
388 | 388 |
389 'src/third_party/lss': | 389 'src/third_party/lss': |
390 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 390 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
391 | 391 |
392 # For Linux and Chromium OS. | 392 # For Linux and Chromium OS. |
393 'src/third_party/cros_system_api': | 393 'src/third_party/cros_system_api': |
394 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'd9ecb3
bd87504815d4c58a6a8b9031deb2498d19', | 394 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'ac14fd
16fbb0710d07f0f3a7e9824249c83646c7', |
395 | 395 |
396 # Note that this is different from Android's freetype repo. | 396 # Note that this is different from Android's freetype repo. |
397 'src/third_party/freetype2/src': | 397 'src/third_party/freetype2/src': |
398 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 398 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
399 | 399 |
400 'src/third_party/freetype-android/src': | 400 'src/third_party/freetype-android/src': |
401 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 401 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
402 | 402 |
403 # Build tools for Chrome OS. | 403 # Build tools for Chrome OS. |
404 'src/third_party/chromite': | 404 'src/third_party/chromite': |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 'src/tools', | 829 'src/tools', |
830 ], | 830 ], |
831 }, | 831 }, |
832 { | 832 { |
833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
834 'name': 'gyp', | 834 'name': 'gyp', |
835 'pattern': '.', | 835 'pattern': '.', |
836 'action': ['python', 'src/build/gyp_chromium'], | 836 'action': ['python', 'src/build/gyp_chromium'], |
837 }, | 837 }, |
838 ] | 838 ] |
OLD | NEW |