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

Side by Side Diff: DEPS

Issue 1382713002: Creating a pexe content handler to translate and run pexes. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Added Mojom interface to communicate with translation nexes Created 5 years, 1 month 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 | mojo/nacl/nonsfi/BUILD.gn » ('j') | mojo/nacl/nonsfi/irt_mojo_nonsfi.h » ('J')
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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 }, 315 },
316 { 316 {
317 # This downloads binaries for Native Client's newlib toolchain. 317 # This downloads binaries for Native Client's newlib toolchain.
318 # Done in lieu of building the toolchain from scratch as it can take 318 # Done in lieu of building the toolchain from scratch as it can take
319 # anywhere from 30 minutes to 4 hours depending on platform to build. 319 # anywhere from 30 minutes to 4 hours depending on platform to build.
320 'name': 'nacltools', 320 'name': 'nacltools',
321 'pattern': '.', 321 'pattern': '.',
322 'action': [ 322 'action': [
323 'python', 'src/build/download_nacl_toolchains.py', 323 'python', 'src/build/download_nacl_toolchains.py',
324 '--packages', 'pnacl_newlib', 324 '--packages', 'pnacl_newlib',
325 '--packages', 'pnacl_translator',
325 'sync', '--extract', 326 'sync', '--extract',
326 ], 327 ],
327 }, 328 },
328 { 329 {
329 # This downloads linux and android Go binaries according to 330 # This downloads linux and android Go binaries according to
330 # tools/go/VERSION. 331 # tools/go/VERSION.
331 'name': 'gotools', 332 'name': 'gotools',
332 'pattern': '.', 333 'pattern': '.',
333 'action': [ 334 'action': [
334 'python', 'src/tools/go/download.py', 335 'python', 'src/tools/go/download.py',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 'pattern': '', 391 'pattern': '',
391 'action': [ 'download_from_google_storage', 392 'action': [ 'download_from_google_storage',
392 '--no_resume', 393 '--no_resume',
393 '--quiet', 394 '--quiet',
394 '--no_auth', 395 '--no_auth',
395 '--bucket', 'mojo/prediction', 396 '--bucket', 'mojo/prediction',
396 '-d', 'src/services/prediction/res', 397 '-d', 'src/services/prediction/res',
397 ], 398 ],
398 }, 399 },
399 ] 400 ]
OLDNEW
« no previous file with comments | « no previous file | mojo/nacl/nonsfi/BUILD.gn » ('j') | mojo/nacl/nonsfi/irt_mojo_nonsfi.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698