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