Format the long lists of sources in the SConscript file to be one per

line.  This is to make it easier to add and remove sources without
having to reformat line breaks.  It also enables sorting with M-x
sort-lines (in emacs) or the like.

Review URL: http://codereview.chromium.org/276042

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3070 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent efb8cee3
...@@ -34,51 +34,127 @@ Import('context') ...@@ -34,51 +34,127 @@ Import('context')
SOURCES = { SOURCES = {
'all': [ 'all': Split("""
'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', accessors.cc
'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', allocation.cc
'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', api.cc
'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', assembler.cc
'debug-agent.cc', 'disassembler.cc', 'execution.cc', 'factory.cc', ast.cc
'flags.cc', 'frame-element.cc', 'frames.cc', bootstrapper.cc
'func-name-inferrer.cc', 'global-handles.cc', 'handles.cc', builtins.cc
'hashmap.cc', 'heap.cc', 'heap-profiler.cc', 'ic.cc', checks.cc
'interpreter-irregexp.cc', 'jsregexp.cc', 'jump-target.cc', 'log.cc', code-stubs.cc
'log-utils.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', codegen.cc
'oprofile-agent.cc', 'parser.cc', 'property.cc', compilation-cache.cc
'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc', compiler.cc
'regexp-stack.cc', 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', contexts.cc
'scanner.cc', 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', conversions.cc
'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', counters.cc
'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', dateparser.cc
'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc', debug-agent.cc
'virtual-frame.cc', 'zone.cc' debug.cc
], disassembler.cc
'arch:arm': [ execution.cc
'arm/assembler-arm.cc', 'arm/builtins-arm.cc', 'arm/codegen-arm.cc', factory.cc
'arm/constants-arm.cc', 'arm/cpu-arm.cc', 'arm/disasm-arm.cc', flags.cc
'arm/debug-arm.cc', 'arm/frames-arm.cc', 'arm/ic-arm.cc', frame-element.cc
'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc', frames.cc
'arm/regexp-macro-assembler-arm.cc', 'arm/register-allocator-arm.cc', func-name-inferrer.cc
'arm/stub-cache-arm.cc', 'arm/virtual-frame-arm.cc' global-handles.cc
], handles.cc
'arch:ia32': [ hashmap.cc
'fast-codegen.cc', 'ia32/assembler-ia32.cc', 'ia32/builtins-ia32.cc', heap-profiler.cc
'ia32/codegen-ia32.cc', 'ia32/cpu-ia32.cc', 'ia32/disasm-ia32.cc', heap.cc
'ia32/debug-ia32.cc', 'ia32/fast-codegen-ia32.cc', ic.cc
'ia32/frames-ia32.cc', 'ia32/ic-ia32.cc', 'ia32/jump-target-ia32.cc', interpreter-irregexp.cc
'ia32/macro-assembler-ia32.cc', 'ia32/regexp-macro-assembler-ia32.cc', jsregexp.cc
'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc', jump-target.cc
'ia32/virtual-frame-ia32.cc' log-utils.cc
], log.cc
'arch:x64': [ mark-compact.cc
'x64/assembler-x64.cc', 'x64/builtins-x64.cc', 'x64/codegen-x64.cc', messages.cc
'x64/cpu-x64.cc', 'x64/disasm-x64.cc', 'x64/debug-x64.cc', objects.cc
'x64/frames-x64.cc', 'x64/ic-x64.cc', 'x64/jump-target-x64.cc', oprofile-agent.cc
'x64/macro-assembler-x64.cc', 'x64/regexp-macro-assembler-x64.cc', parser.cc
'x64/register-allocator-x64.cc', 'x64/stub-cache-x64.cc', property.cc
'x64/virtual-frame-x64.cc' regexp-macro-assembler-irregexp.cc
], regexp-macro-assembler.cc
regexp-stack.cc
register-allocator.cc
rewriter.cc
runtime.cc
scanner.cc
scopeinfo.cc
scopes.cc
serialize.cc
snapshot-common.cc
spaces.cc
string-stream.cc
stub-cache.cc
token.cc
top.cc
unicode.cc
usage-analyzer.cc
utils.cc
v8-counters.cc
v8.cc
v8threads.cc
variables.cc
version.cc
virtual-frame.cc
zone.cc
"""),
'arch:arm': Split("""
arm/assembler-arm.cc
arm/builtins-arm.cc
arm/codegen-arm.cc
arm/constants-arm.cc
arm/cpu-arm.cc
arm/debug-arm.cc
arm/disasm-arm.cc
arm/frames-arm.cc
arm/ic-arm.cc
arm/jump-target-arm.cc
arm/macro-assembler-arm.cc
arm/regexp-macro-assembler-arm.cc
arm/register-allocator-arm.cc
arm/stub-cache-arm.cc
arm/virtual-frame-arm.cc
"""),
'arch:ia32': Split("""
fast-codegen.cc
ia32/assembler-ia32.cc
ia32/builtins-ia32.cc
ia32/codegen-ia32.cc
ia32/cpu-ia32.cc
ia32/debug-ia32.cc
ia32/disasm-ia32.cc
ia32/fast-codegen-ia32.cc
ia32/frames-ia32.cc
ia32/ic-ia32.cc
ia32/jump-target-ia32.cc
ia32/macro-assembler-ia32.cc
ia32/regexp-macro-assembler-ia32.cc
ia32/register-allocator-ia32.cc
ia32/stub-cache-ia32.cc
ia32/virtual-frame-ia32.cc
"""),
'arch:x64': Split("""
x64/assembler-x64.cc
x64/builtins-x64.cc
x64/codegen-x64.cc
x64/cpu-x64.cc
x64/debug-x64.cc
x64/disasm-x64.cc
x64/frames-x64.cc
x64/ic-x64.cc
x64/jump-target-x64.cc
x64/macro-assembler-x64.cc
x64/regexp-macro-assembler-x64.cc
x64/register-allocator-x64.cc
x64/stub-cache-x64.cc
x64/virtual-frame-x64.cc
"""),
'simulator:arm': ['arm/simulator-arm.cc'], 'simulator:arm': ['arm/simulator-arm.cc'],
'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment