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

Side by Side Diff: src/SConscript

Issue 214051: Pushed 1.3.12 to trunk. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 years, 3 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/api.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 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 24 matching lines...) Expand all
35 35
36 SOURCES = { 36 SOURCES = {
37 'all': [ 37 'all': [
38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc',
39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'cfg.cc', 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'cfg.cc',
40 'code-stubs.cc', 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 40 'code-stubs.cc', 'codegen.cc', 'compilation-cache.cc', 'compiler.cc',
41 'contexts.cc', 'conversions.cc', 'counters.cc', 'dateparser.cc', 41 'contexts.cc', 'conversions.cc', 'counters.cc', 'dateparser.cc',
42 'debug.cc', 'debug-agent.cc', 'disassembler.cc', 'execution.cc', 42 'debug.cc', 'debug-agent.cc', 'disassembler.cc', 'execution.cc',
43 'factory.cc', 'flags.cc', 'frame-element.cc', 'frames.cc', 43 'factory.cc', 'flags.cc', 'frame-element.cc', 'frames.cc',
44 'func-name-inferrer.cc', 'global-handles.cc', 'handles.cc', 44 'func-name-inferrer.cc', 'global-handles.cc', 'handles.cc',
45 'hashmap.cc', 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 45 'hashmap.cc', 'heap.cc', 'heap-profiler.cc', 'ic.cc',
46 'jsregexp.cc', 'jump-target.cc', 'log.cc', 'log-utils.cc', 46 'interpreter-irregexp.cc', 'jsregexp.cc', 'jump-target.cc',
47 'mark-compact.cc', 'messages.cc', 'objects.cc', 'oprofile-agent.cc', 47 'log.cc', 'log-utils.cc', 'mark-compact.cc', 'messages.cc',
48 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc', 48 'objects.cc', 'oprofile-agent.cc', 'parser.cc', 'property.cc',
49 'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc', 49 'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc',
50 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', 50 'regexp-stack.cc', 'register-allocator.cc', 'rewriter.cc',
51 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', 51 'runtime.cc', 'scanner.cc', 'scopeinfo.cc', 'scopes.cc',
52 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', 52 'serialize.cc', 'snapshot-common.cc', 'spaces.cc',
53 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc',
53 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', 54 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc',
54 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc', 55 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc',
55 'virtual-frame.cc', 'zone.cc' 56 'virtual-frame.cc', 'zone.cc'
56 ], 57 ],
57 'arch:arm': [ 58 'arch:arm': [
58 'arm/assembler-arm.cc', 'arm/builtins-arm.cc', 'arm/cfg-arm.cc', 59 'arm/assembler-arm.cc', 'arm/builtins-arm.cc', 'arm/cfg-arm.cc',
59 'arm/codegen-arm.cc', 'arm/constants-arm.cc', 'arm/cpu-arm.cc', 60 'arm/codegen-arm.cc', 'arm/constants-arm.cc', 'arm/cpu-arm.cc',
60 'arm/disasm-arm.cc', 'arm/debug-arm.cc', 'arm/frames-arm.cc', 61 'arm/disasm-arm.cc', 'arm/debug-arm.cc', 'arm/frames-arm.cc',
61 'arm/ic-arm.cc', 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc', 62 'arm/ic-arm.cc', 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc',
62 'arm/regexp-macro-assembler-arm.cc', 63 'arm/regexp-macro-assembler-arm.cc',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 189 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
189 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 190 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
190 else: 191 else:
191 snapshot_obj = empty_snapshot_obj 192 snapshot_obj = empty_snapshot_obj
192 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 193 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
193 return (library_objs, d8_objs, [mksnapshot]) 194 return (library_objs, d8_objs, [mksnapshot])
194 195
195 196
196 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 197 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
197 Return('library_objs d8_objs mksnapshot') 198 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698