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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 402 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
403 | 403 |
404 'src/third_party/swig/linux': | 404 'src/third_party/swig/linux': |
405 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', | 405 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', |
406 | 406 |
407 'src/third_party/lss': | 407 'src/third_party/lss': |
408 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 408 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
409 | 409 |
410 # For Linux and Chromium OS. | 410 # For Linux and Chromium OS. |
411 'src/third_party/cros_system_api': | 411 'src/third_party/cros_system_api': |
412 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '767868
8b4405325d32fdfb45064128b9accb9a71', | 412 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '286cec
023e90f54f391fe32bae512f9ec7b4e807', |
413 | 413 |
414 # Note that this is different from Android's freetype repo. | 414 # Note that this is different from Android's freetype repo. |
415 'src/third_party/freetype2/src': | 415 'src/third_party/freetype2/src': |
416 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 416 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', |
417 | 417 |
418 # Build tools for Chrome OS. | 418 # Build tools for Chrome OS. |
419 'src/third_party/chromite': | 419 'src/third_party/chromite': |
420 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'c1bb274a82c13f76c
3d8560808423605bfd84d76', | 420 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'c1bb274a82c13f76c
3d8560808423605bfd84d76', |
421 | 421 |
422 # Dependency of chromite.git. | 422 # Dependency of chromite.git. |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
778 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
779 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
780 'action': [ | 780 'action': [ |
781 'python', | 781 'python', |
782 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
783 'src/tools', | 783 'src/tools', |
784 ], | 784 ], |
785 }, | 785 }, |
786 ] | 786 ] |
OLD | NEW |