Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: DEPS

Issue 1776133002: Add Android fonts to blimp engine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed references to chromeos Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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': '.',
820 'action': [ 'download_from_google_storage',
821 '--no_resume',
822 '--platform=linux*',
823 '--extract',
824 '--no_auth',
825 '--bucket', 'chromium-fonts',
826 '-s', 'src/third_party/blimp_fonts/font_bundle.tar.gz.sha1',
827 ],
828 },
829 {
818 # Pull sanitizer-instrumented third-party libraries if requested via 830 # Pull sanitizer-instrumented third-party libraries if requested via
819 # GYP_DEFINES. 831 # GYP_DEFINES.
820 'name': 'instrumented_libraries', 832 'name': 'instrumented_libraries',
821 'pattern': '\\.sha1', 833 'pattern': '\\.sha1',
822 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], 834 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'],
823 }, 835 },
824 { 836 {
825 # Ensure that while generating dependencies lists in .gyp files we don't 837 # Ensure that while generating dependencies lists in .gyp files we don't
826 # accidentally reference any .pyc files whose corresponding .py files have 838 # accidentally reference any .pyc files whose corresponding .py files have
827 # already been deleted. 839 # already been deleted.
(...skipping 13 matching lines...) Expand all
841 'src/tools', 853 'src/tools',
842 ], 854 ],
843 }, 855 },
844 { 856 {
845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
846 'name': 'gyp', 858 'name': 'gyp',
847 'pattern': '.', 859 'pattern': '.',
848 'action': ['python', 'src/build/gyp_chromium'], 860 'action': ['python', 'src/build/gyp_chromium'],
849 }, 861 },
850 ] 862 ]
OLDNEW
« no previous file with comments | « no previous file | blimp/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698