| 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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 '--platform=win32', | 808 '--platform=win32', |
| 809 '--directory', | 809 '--directory', |
| 810 '--recursive', | 810 '--recursive', |
| 811 '--no_auth', | 811 '--no_auth', |
| 812 '--num_threads=16', | 812 '--num_threads=16', |
| 813 '--bucket', 'chromium-apache-win32', | 813 '--bucket', 'chromium-apache-win32', |
| 814 'src/third_party/apache-win32', | 814 'src/third_party/apache-win32', |
| 815 ], | 815 ], |
| 816 }, | 816 }, |
| 817 { | 817 { |
| 818 'name': 'blimp_fonts', |
| 819 'pattern': '\\.sha1', |
| 820 'action': [ 'download_from_google_storage', |
| 821 '--no_resume', |
| 822 '--platform=linux*', |
| 823 '--directory', |
| 824 '--recursive', |
| 825 '--quiet', |
| 826 '--no_auth', |
| 827 '--num_threads=16', |
| 828 '--bucket', 'chromium-fonts', |
| 829 'src/third_party/blimp_fonts', |
| 830 ], |
| 831 }, |
| 832 { |
| 818 # Pull sanitizer-instrumented third-party libraries if requested via | 833 # Pull sanitizer-instrumented third-party libraries if requested via |
| 819 # GYP_DEFINES. | 834 # GYP_DEFINES. |
| 820 'name': 'instrumented_libraries', | 835 'name': 'instrumented_libraries', |
| 821 'pattern': '\\.sha1', | 836 'pattern': '\\.sha1', |
| 822 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 837 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 823 }, | 838 }, |
| 824 { | 839 { |
| 825 # Ensure that while generating dependencies lists in .gyp files we don't | 840 # Ensure that while generating dependencies lists in .gyp files we don't |
| 826 # accidentally reference any .pyc files whose corresponding .py files have | 841 # accidentally reference any .pyc files whose corresponding .py files have |
| 827 # already been deleted. | 842 # already been deleted. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 841 'src/tools', | 856 'src/tools', |
| 842 ], | 857 ], |
| 843 }, | 858 }, |
| 844 { | 859 { |
| 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 860 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 846 'name': 'gyp', | 861 'name': 'gyp', |
| 847 'pattern': '.', | 862 'pattern': '.', |
| 848 'action': ['python', 'src/build/gyp_chromium'], | 863 'action': ['python', 'src/build/gyp_chromium'], |
| 849 }, | 864 }, |
| 850 ] | 865 ] |
| OLD | NEW |