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

Side by Side Diff: src/SConscript

Issue 465002: Initial OpenBSD support... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years 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/dtoa-config.c » ('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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 x64/ic-x64.cc 152 x64/ic-x64.cc
153 x64/jump-target-x64.cc 153 x64/jump-target-x64.cc
154 x64/macro-assembler-x64.cc 154 x64/macro-assembler-x64.cc
155 x64/regexp-macro-assembler-x64.cc 155 x64/regexp-macro-assembler-x64.cc
156 x64/register-allocator-x64.cc 156 x64/register-allocator-x64.cc
157 x64/stub-cache-x64.cc 157 x64/stub-cache-x64.cc
158 x64/virtual-frame-x64.cc 158 x64/virtual-frame-x64.cc
159 """), 159 """),
160 'simulator:arm': ['arm/simulator-arm.cc'], 160 'simulator:arm': ['arm/simulator-arm.cc'],
161 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 161 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
162 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
162 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 163 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
163 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 164 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
164 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 165 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
165 'os:nullos': ['platform-nullos.cc'], 166 'os:nullos': ['platform-nullos.cc'],
166 'os:win32': ['platform-win32.cc'], 167 'os:win32': ['platform-win32.cc'],
167 'mode:release': [], 168 'mode:release': [],
168 'mode:debug': [ 169 'mode:debug': [
169 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 170 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
170 ] 171 ]
171 } 172 }
172 173
173 174
174 D8_FILES = { 175 D8_FILES = {
175 'all': [ 176 'all': [
176 'd8.cc', 'd8-debug.cc' 177 'd8.cc', 'd8-debug.cc'
177 ], 178 ],
178 'os:linux': [ 179 'os:linux': [
179 'd8-posix.cc' 180 'd8-posix.cc'
180 ], 181 ],
181 'os:macos': [ 182 'os:macos': [
182 'd8-posix.cc' 183 'd8-posix.cc'
183 ], 184 ],
184 'os:android': [ 185 'os:android': [
185 'd8-posix.cc' 186 'd8-posix.cc'
186 ], 187 ],
187 'os:freebsd': [ 188 'os:freebsd': [
188 'd8-posix.cc' 189 'd8-posix.cc'
189 ], 190 ],
191 'os:openbsd': [
192 'd8-posix.cc'
193 ],
190 'os:win32': [ 194 'os:win32': [
191 'd8-windows.cc' 195 'd8-windows.cc'
192 ], 196 ],
193 'os:nullos': [ 197 'os:nullos': [
194 'd8-windows.cc' # Empty implementation at the moment. 198 'd8-windows.cc' # Empty implementation at the moment.
195 ], 199 ],
196 'console:readline': [ 200 'console:readline': [
197 'd8-readline.cc' 201 'd8-readline.cc'
198 ] 202 ]
199 } 203 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 snapshot_cc = Command('snapshot.cc', [], []) 269 snapshot_cc = Command('snapshot.cc', [], [])
266 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 270 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
267 else: 271 else:
268 snapshot_obj = empty_snapshot_obj 272 snapshot_obj = empty_snapshot_obj
269 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 273 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
270 return (library_objs, d8_objs, [mksnapshot]) 274 return (library_objs, d8_objs, [mksnapshot])
271 275
272 276
273 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 277 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
274 Return('library_objs d8_objs mksnapshot') 278 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/dtoa-config.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698