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

Side by Side Diff: src/SConscript

Issue 6525028: Cygwin support (Closed)
Patch Set: Address issues Created 9 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
« no previous file with comments | « SConstruct ('k') | src/ia32/macro-assembler-ia32.cc » ('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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 x64/virtual-frame-x64.cc 226 x64/virtual-frame-x64.cc
227 """), 227 """),
228 'simulator:arm': ['arm/simulator-arm.cc'], 228 'simulator:arm': ['arm/simulator-arm.cc'],
229 'simulator:mips': ['mips/simulator-mips.cc'], 229 'simulator:mips': ['mips/simulator-mips.cc'],
230 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 230 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
231 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 231 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
232 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 232 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
233 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 233 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
234 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 234 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
235 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 235 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
236 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'],
236 'os:nullos': ['platform-nullos.cc'], 237 'os:nullos': ['platform-nullos.cc'],
237 'os:win32': ['platform-win32.cc'], 238 'os:win32': ['platform-win32.cc'],
238 'mode:release': [], 239 'mode:release': [],
239 'mode:debug': [ 240 'mode:debug': [
240 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 241 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
241 ] 242 ]
242 } 243 }
243 244
244 245
245 D8_FILES = { 246 D8_FILES = {
(...skipping 11 matching lines...) Expand all
257 ], 258 ],
258 'os:freebsd': [ 259 'os:freebsd': [
259 'd8-posix.cc' 260 'd8-posix.cc'
260 ], 261 ],
261 'os:openbsd': [ 262 'os:openbsd': [
262 'd8-posix.cc' 263 'd8-posix.cc'
263 ], 264 ],
264 'os:solaris': [ 265 'os:solaris': [
265 'd8-posix.cc' 266 'd8-posix.cc'
266 ], 267 ],
268 'os:cygwin': [
269 'd8-posix.cc'
270 ],
267 'os:win32': [ 271 'os:win32': [
268 'd8-windows.cc' 272 'd8-windows.cc'
269 ], 273 ],
270 'os:nullos': [ 274 'os:nullos': [
271 'd8-windows.cc' # Empty implementation at the moment. 275 'd8-windows.cc' # Empty implementation at the moment.
272 ], 276 ],
273 'console:readline': [ 277 'console:readline': [
274 'd8-readline.cc' 278 'd8-readline.cc'
275 ] 279 ]
276 } 280 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 snapshot_cc = 'snapshot.cc' 346 snapshot_cc = 'snapshot.cc'
343 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 347 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
344 else: 348 else:
345 snapshot_obj = empty_snapshot_obj 349 snapshot_obj = empty_snapshot_obj
346 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 350 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
347 return (library_objs, d8_objs, [mksnapshot]) 351 return (library_objs, d8_objs, [mksnapshot])
348 352
349 353
350 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 354 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
351 Return('library_objs d8_objs mksnapshot') 355 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698