| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 '--no_resume', | 740 '--no_resume', |
| 741 '--platform=win32', | 741 '--platform=win32', |
| 742 '--directory', | 742 '--directory', |
| 743 '--recursive', | 743 '--recursive', |
| 744 '--no_auth', | 744 '--no_auth', |
| 745 '--num_threads=16', | 745 '--num_threads=16', |
| 746 '--bucket', 'chromium-apache-win32', | 746 '--bucket', 'chromium-apache-win32', |
| 747 'src/third_party/apache-win32', | 747 'src/third_party/apache-win32', |
| 748 ], | 748 ], |
| 749 }, | 749 }, |
| 750 # Pull the mojo_shell binary, used for mojo development | |
| 751 { | |
| 752 'name': 'download_mojo_shell', | |
| 753 'pattern': '', | |
| 754 'action': [ 'python', 'src/mojo/public/tools/download_shell_binary.py' ], | |
| 755 }, | |
| 756 { | 750 { |
| 757 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 751 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 758 'name': 'gyp', | 752 'name': 'gyp', |
| 759 'pattern': '.', | 753 'pattern': '.', |
| 760 'action': ['python', 'src/build/gyp_chromium'], | 754 'action': ['python', 'src/build/gyp_chromium'], |
| 761 }, | 755 }, |
| 762 { | 756 { |
| 763 # Verify committers' ~/.netc, gclient and git are properly configured for | 757 # Verify committers' ~/.netc, gclient and git are properly configured for |
| 764 # write access to the git repo. To be removed sometime after Chrome to git | 758 # write access to the git repo. To be removed sometime after Chrome to git |
| 765 # migration completes (let's say Sep 1 2014). | 759 # migration completes (let's say Sep 1 2014). |
| (...skipping 10 matching lines...) Expand all Loading... |
| 776 # corresponding .py files have already been deleted. | 770 # corresponding .py files have already been deleted. |
| 777 'name': 'remove_stale_pyc_files', | 771 'name': 'remove_stale_pyc_files', |
| 778 'pattern': 'src/tools/.*\\.py', | 772 'pattern': 'src/tools/.*\\.py', |
| 779 'action': [ | 773 'action': [ |
| 780 'python', | 774 'python', |
| 781 'src/tools/remove_stale_pyc_files.py', | 775 'src/tools/remove_stale_pyc_files.py', |
| 782 'src/tools', | 776 'src/tools', |
| 783 ], | 777 ], |
| 784 }, | 778 }, |
| 785 ] | 779 ] |
| OLD | NEW |