| 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 { | |
| 833 # Pull sanitizer-instrumented third-party libraries if requested via | 818 # Pull sanitizer-instrumented third-party libraries if requested via |
| 834 # GYP_DEFINES. | 819 # GYP_DEFINES. |
| 835 'name': 'instrumented_libraries', | 820 'name': 'instrumented_libraries', |
| 836 'pattern': '\\.sha1', | 821 'pattern': '\\.sha1', |
| 837 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 822 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 838 }, | 823 }, |
| 839 { | 824 { |
| 840 # Ensure that while generating dependencies lists in .gyp files we don't | 825 # Ensure that while generating dependencies lists in .gyp files we don't |
| 841 # accidentally reference any .pyc files whose corresponding .py files have | 826 # accidentally reference any .pyc files whose corresponding .py files have |
| 842 # already been deleted. | 827 # already been deleted. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 856 'src/tools', | 841 'src/tools', |
| 857 ], | 842 ], |
| 858 }, | 843 }, |
| 859 { | 844 { |
| 860 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 861 'name': 'gyp', | 846 'name': 'gyp', |
| 862 'pattern': '.', | 847 'pattern': '.', |
| 863 'action': ['python', 'src/build/gyp_chromium'], | 848 'action': ['python', 'src/build/gyp_chromium'], |
| 864 }, | 849 }, |
| 865 ] | 850 ] |
| OLD | NEW |