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