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

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

Issue 293743005: Introduce x87 port (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: rebase Created 6 years, 7 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
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | tools/run-tests.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 '../../src/ia32/lithium-gap-resolver-ia32.h', 710 '../../src/ia32/lithium-gap-resolver-ia32.h',
711 '../../src/ia32/lithium-ia32.cc', 711 '../../src/ia32/lithium-ia32.cc',
712 '../../src/ia32/lithium-ia32.h', 712 '../../src/ia32/lithium-ia32.h',
713 '../../src/ia32/macro-assembler-ia32.cc', 713 '../../src/ia32/macro-assembler-ia32.cc',
714 '../../src/ia32/macro-assembler-ia32.h', 714 '../../src/ia32/macro-assembler-ia32.h',
715 '../../src/ia32/regexp-macro-assembler-ia32.cc', 715 '../../src/ia32/regexp-macro-assembler-ia32.cc',
716 '../../src/ia32/regexp-macro-assembler-ia32.h', 716 '../../src/ia32/regexp-macro-assembler-ia32.h',
717 '../../src/ia32/stub-cache-ia32.cc', 717 '../../src/ia32/stub-cache-ia32.cc',
718 ], 718 ],
719 }], 719 }],
720 ['v8_target_arch=="x87"', {
721 'sources': [ ### gcmole(arch:x87) ###
722 '../../src/x87/assembler-x87-inl.h',
723 '../../src/x87/assembler-x87.cc',
724 '../../src/x87/assembler-x87.h',
725 '../../src/x87/builtins-x87.cc',
726 '../../src/x87/code-stubs-x87.cc',
727 '../../src/x87/code-stubs-x87.h',
728 '../../src/x87/codegen-x87.cc',
729 '../../src/x87/codegen-x87.h',
730 '../../src/x87/cpu-x87.cc',
731 '../../src/x87/debug-x87.cc',
732 '../../src/x87/deoptimizer-x87.cc',
733 '../../src/x87/disasm-x87.cc',
734 '../../src/x87/frames-x87.cc',
735 '../../src/x87/frames-x87.h',
736 '../../src/x87/full-codegen-x87.cc',
737 '../../src/x87/ic-x87.cc',
738 '../../src/x87/lithium-codegen-x87.cc',
739 '../../src/x87/lithium-codegen-x87.h',
740 '../../src/x87/lithium-gap-resolver-x87.cc',
741 '../../src/x87/lithium-gap-resolver-x87.h',
742 '../../src/x87/lithium-x87.cc',
743 '../../src/x87/lithium-x87.h',
744 '../../src/x87/macro-assembler-x87.cc',
745 '../../src/x87/macro-assembler-x87.h',
746 '../../src/x87/regexp-macro-assembler-x87.cc',
747 '../../src/x87/regexp-macro-assembler-x87.h',
748 '../../src/x87/stub-cache-x87.cc',
749 ],
750 }],
720 ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', { 751 ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', {
721 'sources': [ ### gcmole(arch:mipsel) ### 752 'sources': [ ### gcmole(arch:mipsel) ###
722 '../../src/mips/assembler-mips.cc', 753 '../../src/mips/assembler-mips.cc',
723 '../../src/mips/assembler-mips.h', 754 '../../src/mips/assembler-mips.h',
724 '../../src/mips/assembler-mips-inl.h', 755 '../../src/mips/assembler-mips-inl.h',
725 '../../src/mips/builtins-mips.cc', 756 '../../src/mips/builtins-mips.cc',
726 '../../src/mips/codegen-mips.cc', 757 '../../src/mips/codegen-mips.cc',
727 '../../src/mips/codegen-mips.h', 758 '../../src/mips/codegen-mips.h',
728 '../../src/mips/code-stubs-mips.cc', 759 '../../src/mips/code-stubs-mips.cc',
729 '../../src/mips/code-stubs-mips.h', 760 '../../src/mips/code-stubs-mips.h',
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1190 }], 1221 }],
1191 ['v8_compress_startup_data=="bz2"', { 1222 ['v8_compress_startup_data=="bz2"', {
1192 'libraries': [ 1223 'libraries': [
1193 '-lbz2', 1224 '-lbz2',
1194 ] 1225 ]
1195 }], 1226 }],
1196 ], 1227 ],
1197 }, 1228 },
1198 ], 1229 ],
1199 } 1230 }
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698