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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 406 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
407 | 407 |
408 'src/third_party/swig/linux': | 408 'src/third_party/swig/linux': |
409 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', | 409 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', |
410 | 410 |
411 'src/third_party/lss': | 411 'src/third_party/lss': |
412 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 412 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
413 | 413 |
414 # For Linux and Chromium OS. | 414 # For Linux and Chromium OS. |
415 'src/third_party/cros_system_api': | 415 'src/third_party/cros_system_api': |
416 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '95c486
f3d3da2cb4e6564f1cd69ab522cf315ea1', | 416 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'aea834
300e75d5c64383be1050d9eec010a12059', |
417 | 417 |
418 # Note that this is different from Android's freetype repo. | 418 # Note that this is different from Android's freetype repo. |
419 'src/third_party/freetype2/src': | 419 'src/third_party/freetype2/src': |
420 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 420 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', |
421 | 421 |
422 # Build tools for Chrome OS. | 422 # Build tools for Chrome OS. |
423 'src/third_party/chromite': | 423 'src/third_party/chromite': |
424 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', | 424 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', |
425 | 425 |
426 # Dependency of chromite.git. | 426 # Dependency of chromite.git. |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 # corresponding .py files have already been deleted. | 791 # corresponding .py files have already been deleted. |
792 'name': 'remove_stale_pyc_files', | 792 'name': 'remove_stale_pyc_files', |
793 'pattern': 'src/tools/.*\\.py', | 793 'pattern': 'src/tools/.*\\.py', |
794 'action': [ | 794 'action': [ |
795 'python', | 795 'python', |
796 'src/tools/remove_stale_pyc_files.py', | 796 'src/tools/remove_stale_pyc_files.py', |
797 'src/tools', | 797 'src/tools', |
798 ], | 798 ], |
799 }, | 799 }, |
800 ] | 800 ] |
OLD | NEW |