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

Side by Side Diff: src/v8.gyp

Issue 2751693002: [wasm][asm.js] Adding custom asm.js lexer. (Closed)
Patch Set: fix 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 'api.h', 410 'api.h',
411 'api-arguments-inl.h', 411 'api-arguments-inl.h',
412 'api-arguments.cc', 412 'api-arguments.cc',
413 'api-arguments.h', 413 'api-arguments.h',
414 'api-natives.cc', 414 'api-natives.cc',
415 'api-natives.h', 415 'api-natives.h',
416 'arguments.cc', 416 'arguments.cc',
417 'arguments.h', 417 'arguments.h',
418 'asmjs/asm-js.cc', 418 'asmjs/asm-js.cc',
419 'asmjs/asm-js.h', 419 'asmjs/asm-js.h',
420 'asmjs/asm-names.h',
421 'asmjs/asm-scanner.cc',
422 'asmjs/asm-scanner.h',
420 'asmjs/asm-typer.cc', 423 'asmjs/asm-typer.cc',
421 'asmjs/asm-typer.h', 424 'asmjs/asm-typer.h',
422 'asmjs/asm-types.cc', 425 'asmjs/asm-types.cc',
423 'asmjs/asm-types.h', 426 'asmjs/asm-types.h',
424 'asmjs/asm-wasm-builder.cc', 427 'asmjs/asm-wasm-builder.cc',
425 'asmjs/asm-wasm-builder.h', 428 'asmjs/asm-wasm-builder.h',
426 'asmjs/switch-logic.h', 429 'asmjs/switch-logic.h',
427 'asmjs/switch-logic.cc', 430 'asmjs/switch-logic.cc',
428 'assembler.cc', 431 'assembler.cc',
429 'assembler.h', 432 'assembler.h',
(...skipping 2050 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 'conditions': [ 2483 'conditions': [
2481 ['want_separate_host_toolset_mkpeephole==1', { 2484 ['want_separate_host_toolset_mkpeephole==1', {
2482 'toolsets': ['host'], 2485 'toolsets': ['host'],
2483 }, { 2486 }, {
2484 'toolsets': ['target'], 2487 'toolsets': ['target'],
2485 }], 2488 }],
2486 ], 2489 ],
2487 }, 2490 },
2488 ], 2491 ],
2489 } 2492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698