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

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: 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
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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 }, 307 },
308 { 308 {
309 # This downloads binaries for Native Client's newlib toolchain. 309 # This downloads binaries for Native Client's newlib toolchain.
310 # Done in lieu of building the toolchain from scratch as it can take 310 # Done in lieu of building the toolchain from scratch as it can take
311 # anywhere from 30 minutes to 4 hours depending on platform to build. 311 # anywhere from 30 minutes to 4 hours depending on platform to build.
312 'name': 'nacltools', 312 'name': 'nacltools',
313 'pattern': '.', 313 'pattern': '.',
314 'action': [ 314 'action': [
315 'python', 'src/build/download_nacl_toolchains.py', 315 'python', 'src/build/download_nacl_toolchains.py',
316 '--packages', 'pnacl_newlib', 316 '--packages', 'pnacl_newlib',
317 '--packages', 'pnacl_translator',
317 'sync', '--extract', 318 'sync', '--extract',
318 ], 319 ],
319 }, 320 },
320 { 321 {
321 # This downloads linux and android Go binaries according to 322 # This downloads linux and android Go binaries according to
322 # tools/go/VERSION. 323 # tools/go/VERSION.
323 'name': 'gotools', 324 'name': 'gotools',
324 'pattern': '.', 325 'pattern': '.',
325 'action': [ 326 'action': [
326 'python', 'src/tools/go/download.py', 327 'python', 'src/tools/go/download.py',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 'pattern': '', 383 'pattern': '',
383 'action': [ 'download_from_google_storage', 384 'action': [ 'download_from_google_storage',
384 '--no_resume', 385 '--no_resume',
385 '--quiet', 386 '--quiet',
386 '--no_auth', 387 '--no_auth',
387 '--bucket', 'mojo/prediction', 388 '--bucket', 'mojo/prediction',
388 '-d', 'src/services/prediction/res', 389 '-d', 'src/services/prediction/res',
389 ], 390 ],
390 }, 391 },
391 ] 392 ]
OLDNEW
« no previous file with comments | « no previous file | mojo/nacl/nonsfi/BUILD.gn » ('j') | mojo/nacl/nonsfi/irt_pnacl_translator_compile.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698