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

Side by Side Diff: DEPS

Issue 1247903003: Add spellcheck and word suggestion to the prediction service (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 { 388 {
389 'name': 'keyboard_native_resources', 389 'name': 'keyboard_native_resources',
390 'pattern': '', 390 'pattern': '',
391 'action': [ 'download_from_google_storage', 391 'action': [ 'download_from_google_storage',
392 '--no_resume', 392 '--no_resume',
393 '--no_auth', 393 '--no_auth',
394 '--bucket', 'mojo/keyboard_native', 394 '--bucket', 'mojo/keyboard_native',
395 '-d', 'src/services/keyboard_native/res', 395 '-d', 'src/services/keyboard_native/res',
396 ], 396 ],
397 }, 397 },
398 # Pull prediction resources using checked-in hashes.
399 {
400 'name': 'prediction_resources',
401 'pattern': '',
402 'action': [ 'download_from_google_storage',
403 '--no_resume',
404 '--no_auth',
405 '--bucket', 'mojo/prediction',
406 '-d', 'src/services/prediction/res',
407 ],
408 },
398 ] 409 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698