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

Unified Diff: src/SConscript

Issue 601028: Forking disassembler and simulator for Thumb2 support;... Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/SConscript
===================================================================
--- src/SConscript (revision 3826)
+++ src/SConscript (working copy)
@@ -112,8 +112,6 @@
arm/codegen-arm.cc
arm/constants-arm.cc
arm/cpu-arm.cc
- arm/debug-arm.cc
- arm/disasm-arm.cc
arm/fast-codegen-arm.cc
arm/frames-arm.cc
arm/full-codegen-arm.cc
@@ -126,9 +124,14 @@
arm/virtual-frame-arm.cc
"""),
'armvariant:arm': Split("""
+ arm/debug-arm.cc
+ arm/disasm-arm.cc
arm/assembler-arm.cc
"""),
'armvariant:thumb2': Split("""
+ arm/debug-thumb2.cc
+ arm/disasm-thumb2.cc
+ arm/instr-thumb2.cc
arm/assembler-thumb2.cc
"""),
'arch:mips': Split("""
@@ -185,7 +188,10 @@
x64/stub-cache-x64.cc
x64/virtual-frame-x64.cc
"""),
- 'simulator:arm': ['arm/simulator-arm.cc'],
+ 'simulator:arm': {
+ 'armvariant:arm': ["arm/simulator-arm.cc"],
+ 'armvariant:thumb2': ["arm/simulator-thumb2.cc"],
+ },
'simulator:mips': ['mips/simulator-mips.cc'],
'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698