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

Side by Side Diff: src/v8.gyp

Issue 2558293004: Add a basic compiler dispatcher (Closed)
Patch Set: play it safe Created 4 years 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 'compiler/unwinding-info-writer.h', 735 'compiler/unwinding-info-writer.h',
736 'compiler/value-numbering-reducer.cc', 736 'compiler/value-numbering-reducer.cc',
737 'compiler/value-numbering-reducer.h', 737 'compiler/value-numbering-reducer.h',
738 'compiler/verifier.cc', 738 'compiler/verifier.cc',
739 'compiler/verifier.h', 739 'compiler/verifier.h',
740 'compiler/wasm-compiler.cc', 740 'compiler/wasm-compiler.cc',
741 'compiler/wasm-compiler.h', 741 'compiler/wasm-compiler.h',
742 'compiler/wasm-linkage.cc', 742 'compiler/wasm-linkage.cc',
743 'compiler/zone-stats.cc', 743 'compiler/zone-stats.cc',
744 'compiler/zone-stats.h', 744 'compiler/zone-stats.h',
745 'compiler-dispatcher/compiler-dispatcher.cc',
746 'compiler-dispatcher/compiler-dispatcher.h',
745 'compiler-dispatcher/compiler-dispatcher-job.cc', 747 'compiler-dispatcher/compiler-dispatcher-job.cc',
746 'compiler-dispatcher/compiler-dispatcher-job.h', 748 'compiler-dispatcher/compiler-dispatcher-job.h',
747 'compiler-dispatcher/compiler-dispatcher-tracer.cc', 749 'compiler-dispatcher/compiler-dispatcher-tracer.cc',
748 'compiler-dispatcher/compiler-dispatcher-tracer.h', 750 'compiler-dispatcher/compiler-dispatcher-tracer.h',
749 'compiler-dispatcher/optimizing-compile-dispatcher.cc', 751 'compiler-dispatcher/optimizing-compile-dispatcher.cc',
750 'compiler-dispatcher/optimizing-compile-dispatcher.h', 752 'compiler-dispatcher/optimizing-compile-dispatcher.h',
751 'compiler.cc', 753 'compiler.cc',
752 'compiler.h', 754 'compiler.h',
753 'context-measure.cc', 755 'context-measure.cc',
754 'context-measure.h', 756 'context-measure.h',
(...skipping 1722 matching lines...) Expand 10 before | Expand all | Expand 10 after
2477 'conditions': [ 2479 'conditions': [
2478 ['want_separate_host_toolset_mkpeephole==1', { 2480 ['want_separate_host_toolset_mkpeephole==1', {
2479 'toolsets': ['host'], 2481 'toolsets': ['host'],
2480 }, { 2482 }, {
2481 'toolsets': ['target'], 2483 'toolsets': ['target'],
2482 }], 2484 }],
2483 ], 2485 ],
2484 }, 2486 },
2485 ], 2487 ],
2486 } 2488 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698