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

Side by Side Diff: DEPS

Issue 1127673003: Add DejaVu Sans Mono (regular) font to third_party. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: update .gitignore Created 5 years, 7 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 | « .gitignore ('k') | third_party/dejavu-fonts-ttf-2.34/AUTHORS » ('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 automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of 'src'). 9 # .gclient file (the parent of 'src').
10 # 10 #
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 }, 341 },
342 { 342 {
343 # This downloads linux and android Go binaries according to 343 # This downloads linux and android Go binaries according to
344 # tools/go/VERSION. 344 # tools/go/VERSION.
345 'name': 'gotools', 345 'name': 'gotools',
346 'pattern': '.', 346 'pattern': '.',
347 'action': [ 347 'action': [
348 'python', 'src/tools/go/download.py', 348 'python', 'src/tools/go/download.py',
349 ], 349 ],
350 }, 350 },
351 # Pull DejaVu fonts using checked-in hashes.
352 {
353 'name': 'dejavu-fonts',
354 'pattern': '',
355 'action': [ 'download_from_google_storage',
356 '--no_resume',
357 '--no_auth',
358 '--bucket', 'mojo/dejavu-fonts',
359 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1',
360 ],
361 },
351 ] 362 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/dejavu-fonts-ttf-2.34/AUTHORS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698