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

Side by Side Diff: src/SConscript

Issue 561072: MIPS port initial commit (Closed) 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 | « SConstruct ('k') | src/assembler.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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 arm/register-allocator-arm.cc 124 arm/register-allocator-arm.cc
125 arm/stub-cache-arm.cc 125 arm/stub-cache-arm.cc
126 arm/virtual-frame-arm.cc 126 arm/virtual-frame-arm.cc
127 """), 127 """),
128 'armvariant:arm': Split(""" 128 'armvariant:arm': Split("""
129 arm/assembler-arm.cc 129 arm/assembler-arm.cc
130 """), 130 """),
131 'armvariant:thumb2': Split(""" 131 'armvariant:thumb2': Split("""
132 arm/assembler-thumb2.cc 132 arm/assembler-thumb2.cc
133 """), 133 """),
134 'arch:mips': Split("""
135 mips/assembler-mips.cc
136 mips/builtins-mips.cc
137 mips/codegen-mips.cc
138 mips/constants-mips.cc
139 mips/cpu-mips.cc
140 mips/debug-mips.cc
141 mips/disasm-mips.cc
142 mips/fast-codegen-mips.cc
143 mips/full-codegen-mips.cc
144 mips/frames-mips.cc
145 mips/ic-mips.cc
146 mips/jump-target-mips.cc
147 mips/macro-assembler-mips.cc
148 mips/register-allocator-mips.cc
149 mips/stub-cache-mips.cc
150 mips/virtual-frame-mips.cc
151 """),
134 'arch:ia32': Split(""" 152 'arch:ia32': Split("""
135 ia32/assembler-ia32.cc 153 ia32/assembler-ia32.cc
136 ia32/builtins-ia32.cc 154 ia32/builtins-ia32.cc
137 ia32/codegen-ia32.cc 155 ia32/codegen-ia32.cc
138 ia32/cpu-ia32.cc 156 ia32/cpu-ia32.cc
139 ia32/debug-ia32.cc 157 ia32/debug-ia32.cc
140 ia32/disasm-ia32.cc 158 ia32/disasm-ia32.cc
141 ia32/fast-codegen-ia32.cc 159 ia32/fast-codegen-ia32.cc
142 ia32/frames-ia32.cc 160 ia32/frames-ia32.cc
143 ia32/full-codegen-ia32.cc 161 ia32/full-codegen-ia32.cc
(...skipping 17 matching lines...) Expand all
161 x64/full-codegen-x64.cc 179 x64/full-codegen-x64.cc
162 x64/ic-x64.cc 180 x64/ic-x64.cc
163 x64/jump-target-x64.cc 181 x64/jump-target-x64.cc
164 x64/macro-assembler-x64.cc 182 x64/macro-assembler-x64.cc
165 x64/regexp-macro-assembler-x64.cc 183 x64/regexp-macro-assembler-x64.cc
166 x64/register-allocator-x64.cc 184 x64/register-allocator-x64.cc
167 x64/stub-cache-x64.cc 185 x64/stub-cache-x64.cc
168 x64/virtual-frame-x64.cc 186 x64/virtual-frame-x64.cc
169 """), 187 """),
170 'simulator:arm': ['arm/simulator-arm.cc'], 188 'simulator:arm': ['arm/simulator-arm.cc'],
189 'simulator:mips': ['mips/simulator-mips.cc'],
171 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 190 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
172 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 191 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
173 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 192 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
174 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 193 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
175 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 194 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
176 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 195 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
177 'os:nullos': ['platform-nullos.cc'], 196 'os:nullos': ['platform-nullos.cc'],
178 'os:win32': ['platform-win32.cc'], 197 'os:win32': ['platform-win32.cc'],
179 'mode:release': [], 198 'mode:release': [],
180 'mode:debug': [ 199 'mode:debug': [
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 snapshot_cc = Command('snapshot.cc', [], []) 302 snapshot_cc = Command('snapshot.cc', [], [])
284 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 303 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
285 else: 304 else:
286 snapshot_obj = empty_snapshot_obj 305 snapshot_obj = empty_snapshot_obj
287 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 306 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
288 return (library_objs, d8_objs, [mksnapshot]) 307 return (library_objs, d8_objs, [mksnapshot])
289 308
290 309
291 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 310 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
292 Return('library_objs d8_objs mksnapshot') 311 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698