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

Side by Side Diff: src/SConscript

Issue 6066010: Merge 6095:6198 from bleeding_edge to experimental/gc. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 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
« no previous file with comments | « include/v8.h ('k') | 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 223 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
224 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 224 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
225 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 225 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
226 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 226 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
227 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 227 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
228 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 228 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
229 'os:nullos': ['platform-nullos.cc'], 229 'os:nullos': ['platform-nullos.cc'],
230 'os:win32': ['platform-win32.cc'], 230 'os:win32': ['platform-win32.cc'],
231 'mode:release': [], 231 'mode:release': [],
232 'mode:debug': [ 232 'mode:debug': [
233 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 233 'objects-debug.cc', 'objects-printer.cc', 'prettyprinter.cc',
234 'regexp-macro-assembler-tracer.cc'
234 ], 235 ],
235 'objectprint:on': ['objects-debug.cc'] 236 'objectprint:on': ['objects-printer.cc']
236 } 237 }
237 238
238 239
239 D8_FILES = { 240 D8_FILES = {
240 'all': [ 241 'all': [
241 'd8.cc', 'd8-debug.cc' 242 'd8.cc', 'd8-debug.cc'
242 ], 243 ],
243 'os:linux': [ 244 'os:linux': [
244 'd8-posix.cc' 245 'd8-posix.cc'
245 ], 246 ],
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 snapshot_cc = 'snapshot.cc' 337 snapshot_cc = 'snapshot.cc'
337 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
338 else: 339 else:
339 snapshot_obj = empty_snapshot_obj 340 snapshot_obj = empty_snapshot_obj
340 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
341 return (library_objs, d8_objs, [mksnapshot]) 342 return (library_objs, d8_objs, [mksnapshot])
342 343
343 344
344 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
345 Return('library_objs d8_objs mksnapshot') 346 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/arm/assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698