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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1875583003: Separate CodeAssembler and CodeStubAssembler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix gn build Created 4 years, 8 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 '../../src/cached-powers.cc', 448 '../../src/cached-powers.cc',
449 '../../src/cached-powers.h', 449 '../../src/cached-powers.h',
450 '../../src/cancelable-task.cc', 450 '../../src/cancelable-task.cc',
451 '../../src/cancelable-task.h', 451 '../../src/cancelable-task.h',
452 '../../src/char-predicates.cc', 452 '../../src/char-predicates.cc',
453 '../../src/char-predicates-inl.h', 453 '../../src/char-predicates-inl.h',
454 '../../src/char-predicates.h', 454 '../../src/char-predicates.h',
455 '../../src/checks.h', 455 '../../src/checks.h',
456 '../../src/code-factory.cc', 456 '../../src/code-factory.cc',
457 '../../src/code-factory.h', 457 '../../src/code-factory.h',
458 '../../src/code-stub-assembler.cc',
459 '../../src/code-stub-assembler.h',
458 '../../src/code-stubs.cc', 460 '../../src/code-stubs.cc',
459 '../../src/code-stubs.h', 461 '../../src/code-stubs.h',
460 '../../src/code-stubs-hydrogen.cc', 462 '../../src/code-stubs-hydrogen.cc',
461 '../../src/codegen.cc', 463 '../../src/codegen.cc',
462 '../../src/codegen.h', 464 '../../src/codegen.h',
463 '../../src/collector.h', 465 '../../src/collector.h',
464 '../../src/compilation-cache.cc', 466 '../../src/compilation-cache.cc',
465 '../../src/compilation-cache.h', 467 '../../src/compilation-cache.h',
466 '../../src/compilation-dependencies.cc', 468 '../../src/compilation-dependencies.cc',
467 '../../src/compilation-dependencies.h', 469 '../../src/compilation-dependencies.h',
(...skipping 18 matching lines...) Expand all
486 '../../src/compiler/bytecode-graph-builder.cc', 488 '../../src/compiler/bytecode-graph-builder.cc',
487 '../../src/compiler/bytecode-graph-builder.h', 489 '../../src/compiler/bytecode-graph-builder.h',
488 '../../src/compiler/change-lowering.cc', 490 '../../src/compiler/change-lowering.cc',
489 '../../src/compiler/change-lowering.h', 491 '../../src/compiler/change-lowering.h',
490 '../../src/compiler/c-linkage.cc', 492 '../../src/compiler/c-linkage.cc',
491 '../../src/compiler/coalesced-live-ranges.cc', 493 '../../src/compiler/coalesced-live-ranges.cc',
492 '../../src/compiler/coalesced-live-ranges.h', 494 '../../src/compiler/coalesced-live-ranges.h',
493 '../../src/compiler/code-generator-impl.h', 495 '../../src/compiler/code-generator-impl.h',
494 '../../src/compiler/code-generator.cc', 496 '../../src/compiler/code-generator.cc',
495 '../../src/compiler/code-generator.h', 497 '../../src/compiler/code-generator.h',
496 '../../src/compiler/code-stub-assembler.cc', 498 '../../src/compiler/code-assembler.cc',
Michael Starzinger 2016/04/14 09:04:23 nit: Please alpha-sort.
danno 2016/04/18 11:00:04 Done.
497 '../../src/compiler/code-stub-assembler.h', 499 '../../src/compiler/code-assembler.h',
498 '../../src/compiler/common-node-cache.cc', 500 '../../src/compiler/common-node-cache.cc',
499 '../../src/compiler/common-node-cache.h', 501 '../../src/compiler/common-node-cache.h',
500 '../../src/compiler/common-operator-reducer.cc', 502 '../../src/compiler/common-operator-reducer.cc',
501 '../../src/compiler/common-operator-reducer.h', 503 '../../src/compiler/common-operator-reducer.h',
502 '../../src/compiler/common-operator.cc', 504 '../../src/compiler/common-operator.cc',
503 '../../src/compiler/common-operator.h', 505 '../../src/compiler/common-operator.h',
504 '../../src/compiler/control-builders.cc', 506 '../../src/compiler/control-builders.cc',
505 '../../src/compiler/control-builders.h', 507 '../../src/compiler/control-builders.h',
506 '../../src/compiler/control-equivalence.cc', 508 '../../src/compiler/control-equivalence.cc',
507 '../../src/compiler/control-equivalence.h', 509 '../../src/compiler/control-equivalence.h',
(...skipping 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after
2208 }], 2210 }],
2209 ['want_separate_host_toolset==1', { 2211 ['want_separate_host_toolset==1', {
2210 'toolsets': ['host'], 2212 'toolsets': ['host'],
2211 }, { 2213 }, {
2212 'toolsets': ['target'], 2214 'toolsets': ['target'],
2213 }], 2215 }],
2214 ], 2216 ],
2215 }, 2217 },
2216 ], 2218 ],
2217 } 2219 }
OLDNEW
« src/fast-accessor-assembler.cc ('K') | « src/interpreter/interpreter-assembler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698