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

Side by Side Diff: src/v8.gyp

Issue 2751693002: [wasm][asm.js] Adding custom asm.js lexer. (Closed)
Patch Set: fix warning Created 3 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
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 'api.h', 415 'api.h',
416 'api-arguments-inl.h', 416 'api-arguments-inl.h',
417 'api-arguments.cc', 417 'api-arguments.cc',
418 'api-arguments.h', 418 'api-arguments.h',
419 'api-natives.cc', 419 'api-natives.cc',
420 'api-natives.h', 420 'api-natives.h',
421 'arguments.cc', 421 'arguments.cc',
422 'arguments.h', 422 'arguments.h',
423 'asmjs/asm-js.cc', 423 'asmjs/asm-js.cc',
424 'asmjs/asm-js.h', 424 'asmjs/asm-js.h',
425 'asmjs/asm-lexer.cc',
426 'asmjs/asm-lexer.h',
427 'asmjs/asm-names.h',
425 'asmjs/asm-typer.cc', 428 'asmjs/asm-typer.cc',
426 'asmjs/asm-typer.h', 429 'asmjs/asm-typer.h',
427 'asmjs/asm-types.cc', 430 'asmjs/asm-types.cc',
428 'asmjs/asm-types.h', 431 'asmjs/asm-types.h',
429 'asmjs/asm-wasm-builder.cc', 432 'asmjs/asm-wasm-builder.cc',
430 'asmjs/asm-wasm-builder.h', 433 'asmjs/asm-wasm-builder.h',
431 'asmjs/switch-logic.h', 434 'asmjs/switch-logic.h',
432 'asmjs/switch-logic.cc', 435 'asmjs/switch-logic.cc',
433 'assembler.cc', 436 'assembler.cc',
434 'assembler.h', 437 'assembler.h',
(...skipping 2085 matching lines...) Expand 10 before | Expand all | Expand 10 after
2520 'conditions': [ 2523 'conditions': [
2521 ['want_separate_host_toolset_mkpeephole==1', { 2524 ['want_separate_host_toolset_mkpeephole==1', {
2522 'toolsets': ['host'], 2525 'toolsets': ['host'],
2523 }, { 2526 }, {
2524 'toolsets': ['target'], 2527 'toolsets': ['target'],
2525 }], 2528 }],
2526 ], 2529 ],
2527 }, 2530 },
2528 ], 2531 ],
2529 } 2532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698