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