| 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 # Pull the mojo_shell binary, used for mojo development | 754 # Pull the mojo_shell binary, used for mojo development |
| 755 { | 755 { |
| 756 'name': 'download_mojo_shell', | 756 'name': 'download_mojo_shell', |
| 757 'pattern': '', | 757 'pattern': '', |
| 758 'action': [ 'python', | 758 'action': [ 'python', |
| 759 'src/third_party/mojo/src/mojo/public/tools/download_shell_binar
y.py', | 759 'src/third_party/mojo/src/mojo/public/tools/download_shell_binar
y.py', |
| 760 '--tools-directory=../../../../../../tools', | 760 '--tools-directory=../../../../../../tools', |
| 761 ], | 761 ], |
| 762 }, | 762 }, |
| 763 { | 763 { |
| 764 # Pull sanitizer-instrumented third-party libraries if requested via |
| 765 # GYP_DEFINES. |
| 766 'name': 'instrumented_libraries', |
| 767 'pattern': '\\.sha1', |
| 768 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 769 }, |
| 770 { |
| 764 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 765 'name': 'gyp', | 772 'name': 'gyp', |
| 766 'pattern': '.', | 773 'pattern': '.', |
| 767 'action': ['python', 'src/build/gyp_chromium'], | 774 'action': ['python', 'src/build/gyp_chromium'], |
| 768 }, | 775 }, |
| 769 { | 776 { |
| 770 # Verify committers' ~/.netc, gclient and git are properly configured for | 777 # Verify committers' ~/.netc, gclient and git are properly configured for |
| 771 # write access to the git repo. To be removed sometime after Chrome to git | 778 # write access to the git repo. To be removed sometime after Chrome to git |
| 772 # migration completes (let's say Sep 1 2014). | 779 # migration completes (let's say Sep 1 2014). |
| 773 'name': 'check_git_config', | 780 'name': 'check_git_config', |
| 774 'pattern': '.', | 781 'pattern': '.', |
| 775 'action': [ | 782 'action': [ |
| 776 'python', | 783 'python', |
| 777 'src/tools/check_git_config.py', | 784 'src/tools/check_git_config.py', |
| 778 '--running-as-hook', | 785 '--running-as-hook', |
| 779 ], | 786 ], |
| 780 }, | 787 }, |
| 781 { | 788 { |
| 782 # Ensure that we don't accidentally reference any .pyc files whose | 789 # Ensure that we don't accidentally reference any .pyc files whose |
| 783 # corresponding .py files have already been deleted. | 790 # corresponding .py files have already been deleted. |
| 784 'name': 'remove_stale_pyc_files', | 791 'name': 'remove_stale_pyc_files', |
| 785 'pattern': 'src/tools/.*\\.py', | 792 'pattern': 'src/tools/.*\\.py', |
| 786 'action': [ | 793 'action': [ |
| 787 'python', | 794 'python', |
| 788 'src/tools/remove_stale_pyc_files.py', | 795 'src/tools/remove_stale_pyc_files.py', |
| 789 'src/tools', | 796 'src/tools', |
| 790 ], | 797 ], |
| 791 }, | 798 }, |
| 792 ] | 799 ] |
| OLD | NEW |