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

Side by Side Diff: src/SConscript

Issue 6577036: [Isolates] Merge from bleeding_edge to isolates, revisions 6100-6300. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' 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 | Annotate | Revision Log
« no previous file with comments | « include/v8.h ('k') | src/accessors.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 2008 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
11 # with the distribution. 11 # with the distribution.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 heap-profiler.cc 79 heap-profiler.cc
80 heap.cc 80 heap.cc
81 hydrogen.cc 81 hydrogen.cc
82 hydrogen-instructions.cc 82 hydrogen-instructions.cc
83 ic.cc 83 ic.cc
84 interpreter-irregexp.cc 84 interpreter-irregexp.cc
85 isolate.cc 85 isolate.cc
86 jsregexp.cc 86 jsregexp.cc
87 jump-target.cc 87 jump-target.cc
88 lithium-allocator.cc 88 lithium-allocator.cc
89 lithium.cc
89 liveedit.cc 90 liveedit.cc
90 log-utils.cc 91 log-utils.cc
91 log.cc 92 log.cc
92 mark-compact.cc 93 mark-compact.cc
93 messages.cc 94 messages.cc
94 objects.cc 95 objects.cc
95 objects-visiting.cc 96 objects-visiting.cc
96 oprofile-agent.cc 97 oprofile-agent.cc
97 parser.cc 98 parser.cc
98 preparser.cc 99 preparser.cc
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 x64/code-stubs-x64.cc 206 x64/code-stubs-x64.cc
206 x64/codegen-x64.cc 207 x64/codegen-x64.cc
207 x64/cpu-x64.cc 208 x64/cpu-x64.cc
208 x64/debug-x64.cc 209 x64/debug-x64.cc
209 x64/deoptimizer-x64.cc 210 x64/deoptimizer-x64.cc
210 x64/disasm-x64.cc 211 x64/disasm-x64.cc
211 x64/frames-x64.cc 212 x64/frames-x64.cc
212 x64/full-codegen-x64.cc 213 x64/full-codegen-x64.cc
213 x64/ic-x64.cc 214 x64/ic-x64.cc
214 x64/jump-target-x64.cc 215 x64/jump-target-x64.cc
216 x64/lithium-x64.cc
217 x64/lithium-codegen-x64.cc
215 x64/macro-assembler-x64.cc 218 x64/macro-assembler-x64.cc
216 x64/regexp-macro-assembler-x64.cc 219 x64/regexp-macro-assembler-x64.cc
217 x64/register-allocator-x64.cc 220 x64/register-allocator-x64.cc
218 x64/stub-cache-x64.cc 221 x64/stub-cache-x64.cc
219 x64/virtual-frame-x64.cc 222 x64/virtual-frame-x64.cc
220 """), 223 """),
221 'simulator:arm': ['arm/simulator-arm.cc'], 224 'simulator:arm': ['arm/simulator-arm.cc'],
222 'simulator:mips': ['mips/simulator-mips.cc'], 225 'simulator:mips': ['mips/simulator-mips.cc'],
223 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 226 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
224 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 227 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
225 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 228 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
226 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 229 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
227 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 230 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
228 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 231 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
229 'os:nullos': ['platform-nullos.cc'], 232 'os:nullos': ['platform-nullos.cc'],
230 'os:win32': ['platform-win32.cc'], 233 'os:win32': ['platform-win32.cc'],
231 'mode:release': [], 234 'mode:release': [],
232 'mode:debug': [ 235 'mode:debug': [
233 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 236 'objects-debug.cc', 'objects-printer.cc', 'prettyprinter.cc',
237 'regexp-macro-assembler-tracer.cc'
234 ], 238 ],
235 'objectprint:on': ['objects-debug.cc'] 239 'objectprint:on': ['objects-printer.cc']
236 } 240 }
237 241
238 242
239 D8_FILES = { 243 D8_FILES = {
240 'all': [ 244 'all': [
241 'd8.cc', 'd8-debug.cc' 245 'd8.cc', 'd8-debug.cc'
242 ], 246 ],
243 'os:linux': [ 247 'os:linux': [
244 'd8-posix.cc' 248 'd8-posix.cc'
245 ], 249 ],
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 snapshot_cc = 'snapshot.cc' 340 snapshot_cc = 'snapshot.cc'
337 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 341 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
338 else: 342 else:
339 snapshot_obj = empty_snapshot_obj 343 snapshot_obj = empty_snapshot_obj
340 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 344 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
341 return (library_objs, d8_objs, [mksnapshot]) 345 return (library_objs, d8_objs, [mksnapshot])
342 346
343 347
344 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 348 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
345 Return('library_objs d8_objs mksnapshot') 349 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698