| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 416 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| 417 | 417 |
| 418 'src/third_party/swig/linux': | 418 'src/third_party/swig/linux': |
| 419 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', | 419 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', |
| 420 | 420 |
| 421 'src/third_party/lss': | 421 'src/third_party/lss': |
| 422 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 422 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 423 | 423 |
| 424 # For Linux and Chromium OS. | 424 # For Linux and Chromium OS. |
| 425 'src/third_party/cros_system_api': | 425 'src/third_party/cros_system_api': |
| 426 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '7d5f30
c6bd012260e5266c6e9624f4fed91eb852', | 426 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '6c4df7
fe9cb9270256b7f474b77b9e29b096c707', |
| 427 | 427 |
| 428 # Note that this is different from Android's freetype repo. | 428 # Note that this is different from Android's freetype repo. |
| 429 'src/third_party/freetype2/src': | 429 'src/third_party/freetype2/src': |
| 430 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 430 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', |
| 431 | 431 |
| 432 # Build tools for Chrome OS. | 432 # Build tools for Chrome OS. |
| 433 'src/third_party/chromite': | 433 'src/third_party/chromite': |
| 434 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'dda64836fc8b02ed8
9fed167603a838007e99712', | 434 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'dda64836fc8b02ed8
9fed167603a838007e99712', |
| 435 | 435 |
| 436 # Dependency of chromite.git. | 436 # Dependency of chromite.git. |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 # corresponding .py files have already been deleted. | 774 # corresponding .py files have already been deleted. |
| 775 'name': 'remove_stale_pyc_files', | 775 'name': 'remove_stale_pyc_files', |
| 776 'pattern': 'src/tools/.*\\.py', | 776 'pattern': 'src/tools/.*\\.py', |
| 777 'action': [ | 777 'action': [ |
| 778 'python', | 778 'python', |
| 779 'src/tools/remove_stale_pyc_files.py', | 779 'src/tools/remove_stale_pyc_files.py', |
| 780 'src/tools', | 780 'src/tools', |
| 781 ], | 781 ], |
| 782 }, | 782 }, |
| 783 ] | 783 ] |
| OLD | NEW |