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