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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 397 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
398 | 398 |
399 'src/third_party/swig/linux': | 399 'src/third_party/swig/linux': |
400 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', | 400 Var('chromium_git') + '/chromium/deps/swig/linux.git' + '@' + '866b8e0e0e0c
fe99ebe608260030916ca0c3f92d', |
401 | 401 |
402 'src/third_party/lss': | 402 'src/third_party/lss': |
403 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 403 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
404 | 404 |
405 # For Linux and Chromium OS. | 405 # For Linux and Chromium OS. |
406 'src/third_party/cros_system_api': | 406 'src/third_party/cros_system_api': |
407 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'b24b4f
8d7cf8b0b680cedc384965b7b91e65b055', | 407 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '01a949
23ff6654c584cf755dbe579145d828a6e6', |
408 | 408 |
409 # Note that this is different from Android's freetype repo. | 409 # Note that this is different from Android's freetype repo. |
410 'src/third_party/freetype2/src': | 410 'src/third_party/freetype2/src': |
411 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 411 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', |
412 | 412 |
413 # Build tools for Chrome OS. | 413 # Build tools for Chrome OS. |
414 'src/third_party/chromite': | 414 'src/third_party/chromite': |
415 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', | 415 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', |
416 | 416 |
417 # Dependency of chromite.git. | 417 # Dependency of chromite.git. |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 # corresponding .py files have already been deleted. | 775 # corresponding .py files have already been deleted. |
776 'name': 'remove_stale_pyc_files', | 776 'name': 'remove_stale_pyc_files', |
777 'pattern': 'src/tools/.*\\.py', | 777 'pattern': 'src/tools/.*\\.py', |
778 'action': [ | 778 'action': [ |
779 'python', | 779 'python', |
780 'src/tools/remove_stale_pyc_files.py', | 780 'src/tools/remove_stale_pyc_files.py', |
781 'src/tools', | 781 'src/tools', |
782 ], | 782 ], |
783 }, | 783 }, |
784 ] | 784 ] |
OLD | NEW |