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

Side by Side Diff: src/SConscript

Issue 549079: Support for MIPS in architecture independent files.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 11 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
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 arm/fast-codegen-arm.cc 116 arm/fast-codegen-arm.cc
117 arm/frames-arm.cc 117 arm/frames-arm.cc
118 arm/ic-arm.cc 118 arm/ic-arm.cc
119 arm/jump-target-arm.cc 119 arm/jump-target-arm.cc
120 arm/macro-assembler-arm.cc 120 arm/macro-assembler-arm.cc
121 arm/regexp-macro-assembler-arm.cc 121 arm/regexp-macro-assembler-arm.cc
122 arm/register-allocator-arm.cc 122 arm/register-allocator-arm.cc
123 arm/stub-cache-arm.cc 123 arm/stub-cache-arm.cc
124 arm/virtual-frame-arm.cc 124 arm/virtual-frame-arm.cc
125 """), 125 """),
126 'arch:mips': Split("""
127 mips/assembler-mips.cc
128 mips/builtins-mips.cc
129 mips/codegen-mips.cc
130 mips/constants-mips.cc
131 mips/cpu-mips.cc
132 mips/debug-mips.cc
133 mips/disasm-mips.cc
134 mips/fast-codegen-mips.cc
135 mips/frames-mips.cc
136 mips/ic-mips.cc
137 mips/jump-target-mips.cc
138 mips/macro-assembler-mips.cc
139 mips/regexp-macro-assembler-mips.cc
140 mips/register-allocator-mips.cc
141 mips/stub-cache-mips.cc
142 mips/virtual-frame-mips.cc
143 mips/test-mips.cc
144 """),
126 'arch:ia32': Split(""" 145 'arch:ia32': Split("""
127 ia32/assembler-ia32.cc 146 ia32/assembler-ia32.cc
128 ia32/builtins-ia32.cc 147 ia32/builtins-ia32.cc
129 ia32/codegen-ia32.cc 148 ia32/codegen-ia32.cc
130 ia32/cpu-ia32.cc 149 ia32/cpu-ia32.cc
131 ia32/debug-ia32.cc 150 ia32/debug-ia32.cc
132 ia32/disasm-ia32.cc 151 ia32/disasm-ia32.cc
133 ia32/fast-codegen-ia32.cc 152 ia32/fast-codegen-ia32.cc
134 ia32/frames-ia32.cc 153 ia32/frames-ia32.cc
135 ia32/ic-ia32.cc 154 ia32/ic-ia32.cc
(...skipping 15 matching lines...) Expand all
151 x64/frames-x64.cc 170 x64/frames-x64.cc
152 x64/ic-x64.cc 171 x64/ic-x64.cc
153 x64/jump-target-x64.cc 172 x64/jump-target-x64.cc
154 x64/macro-assembler-x64.cc 173 x64/macro-assembler-x64.cc
155 x64/regexp-macro-assembler-x64.cc 174 x64/regexp-macro-assembler-x64.cc
156 x64/register-allocator-x64.cc 175 x64/register-allocator-x64.cc
157 x64/stub-cache-x64.cc 176 x64/stub-cache-x64.cc
158 x64/virtual-frame-x64.cc 177 x64/virtual-frame-x64.cc
159 """), 178 """),
160 'simulator:arm': ['arm/simulator-arm.cc'], 179 'simulator:arm': ['arm/simulator-arm.cc'],
180 'simulator:mips': ['mips/simulator-mips.cc'],
161 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 181 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
162 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 182 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
163 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 183 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
164 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 184 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
165 'os:nullos': ['platform-nullos.cc'], 185 'os:nullos': ['platform-nullos.cc'],
166 'os:win32': ['platform-win32.cc'], 186 'os:win32': ['platform-win32.cc'],
167 'mode:release': [], 187 'mode:release': [],
168 'mode:debug': [ 188 'mode:debug': [
169 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 189 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
170 ] 190 ]
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 286 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
267 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 287 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
268 else: 288 else:
269 snapshot_obj = empty_snapshot_obj 289 snapshot_obj = empty_snapshot_obj
270 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 290 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
271 return (library_objs, d8_objs, [mksnapshot]) 291 return (library_objs, d8_objs, [mksnapshot])
272 292
273 293
274 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 294 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
275 Return('library_objs d8_objs mksnapshot') 295 Return('library_objs d8_objs mksnapshot')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698