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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('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 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 variables.cc 105 variables.cc
106 version.cc 106 version.cc
107 virtual-frame.cc 107 virtual-frame.cc
108 zone.cc 108 zone.cc
109 """), 109 """),
110 'arch:arm': Split(""" 110 'arch:arm': Split("""
111 arm/builtins-arm.cc 111 arm/builtins-arm.cc
112 arm/codegen-arm.cc 112 arm/codegen-arm.cc
113 arm/constants-arm.cc 113 arm/constants-arm.cc
114 arm/cpu-arm.cc 114 arm/cpu-arm.cc
115 arm/debug-arm.cc
116 arm/disasm-arm.cc
117 arm/fast-codegen-arm.cc 115 arm/fast-codegen-arm.cc
118 arm/frames-arm.cc 116 arm/frames-arm.cc
119 arm/full-codegen-arm.cc 117 arm/full-codegen-arm.cc
120 arm/ic-arm.cc 118 arm/ic-arm.cc
121 arm/jump-target-arm.cc 119 arm/jump-target-arm.cc
122 arm/macro-assembler-arm.cc 120 arm/macro-assembler-arm.cc
123 arm/regexp-macro-assembler-arm.cc 121 arm/regexp-macro-assembler-arm.cc
124 arm/register-allocator-arm.cc 122 arm/register-allocator-arm.cc
125 arm/stub-cache-arm.cc 123 arm/stub-cache-arm.cc
126 arm/virtual-frame-arm.cc 124 arm/virtual-frame-arm.cc
127 """), 125 """),
128 'armvariant:arm': Split(""" 126 'armvariant:arm': Split("""
127 arm/debug-arm.cc
128 arm/disasm-arm.cc
129 arm/assembler-arm.cc 129 arm/assembler-arm.cc
130 """), 130 """),
131 'armvariant:thumb2': Split(""" 131 'armvariant:thumb2': Split("""
132 arm/debug-thumb2.cc
133 arm/disasm-thumb2.cc
134 arm/instr-thumb2.cc
132 arm/assembler-thumb2.cc 135 arm/assembler-thumb2.cc
133 """), 136 """),
134 'arch:mips': Split(""" 137 'arch:mips': Split("""
135 mips/assembler-mips.cc 138 mips/assembler-mips.cc
136 mips/builtins-mips.cc 139 mips/builtins-mips.cc
137 mips/codegen-mips.cc 140 mips/codegen-mips.cc
138 mips/constants-mips.cc 141 mips/constants-mips.cc
139 mips/cpu-mips.cc 142 mips/cpu-mips.cc
140 mips/debug-mips.cc 143 mips/debug-mips.cc
141 mips/disasm-mips.cc 144 mips/disasm-mips.cc
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 x64/frames-x64.cc 181 x64/frames-x64.cc
179 x64/full-codegen-x64.cc 182 x64/full-codegen-x64.cc
180 x64/ic-x64.cc 183 x64/ic-x64.cc
181 x64/jump-target-x64.cc 184 x64/jump-target-x64.cc
182 x64/macro-assembler-x64.cc 185 x64/macro-assembler-x64.cc
183 x64/regexp-macro-assembler-x64.cc 186 x64/regexp-macro-assembler-x64.cc
184 x64/register-allocator-x64.cc 187 x64/register-allocator-x64.cc
185 x64/stub-cache-x64.cc 188 x64/stub-cache-x64.cc
186 x64/virtual-frame-x64.cc 189 x64/virtual-frame-x64.cc
187 """), 190 """),
188 'simulator:arm': ['arm/simulator-arm.cc'], 191 'simulator:arm': {
192 'armvariant:arm': ["arm/simulator-arm.cc"],
193 'armvariant:thumb2': ["arm/simulator-thumb2.cc"],
194 },
189 'simulator:mips': ['mips/simulator-mips.cc'], 195 'simulator:mips': ['mips/simulator-mips.cc'],
190 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 196 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
191 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 197 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
192 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 198 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
193 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 199 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
194 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 200 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
195 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 201 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
196 'os:nullos': ['platform-nullos.cc'], 202 'os:nullos': ['platform-nullos.cc'],
197 'os:win32': ['platform-win32.cc'], 203 'os:win32': ['platform-win32.cc'],
198 'mode:release': [], 204 'mode:release': [],
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 snapshot_cc = Command('snapshot.cc', [], []) 308 snapshot_cc = Command('snapshot.cc', [], [])
303 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 309 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
304 else: 310 else:
305 snapshot_obj = empty_snapshot_obj 311 snapshot_obj = empty_snapshot_obj
306 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 312 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
307 return (library_objs, d8_objs, [mksnapshot]) 313 return (library_objs, d8_objs, [mksnapshot])
308 314
309 315
310 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 316 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
311 Return('library_objs d8_objs mksnapshot') 317 Return('library_objs d8_objs mksnapshot')
OLDNEW
« 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