OLD | NEW |
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 22 matching lines...) Expand all Loading... |
33 Import('context') | 33 Import('context') |
34 | 34 |
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', 'code-stubs.cc', | 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', |
40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', | 40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', |
41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', | 41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', |
42 'debug-agent.cc', 'disassembler.cc', 'execution.cc', 'factory.cc', | 42 'debug-agent.cc', 'disassembler.cc', 'execution.cc', 'factory.cc', |
43 'flags.cc', 'frames.cc', 'func-name-inferrer.cc', | 43 'flags.cc', 'frame-element.cc', 'frames.cc', 'func-name-inferrer.cc', |
44 'global-handles.cc', 'handles.cc', 'hashmap.cc', | 44 'global-handles.cc', 'handles.cc', 'hashmap.cc', |
45 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc', | 45 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc', |
46 'jump-target.cc', 'log.cc', 'log-utils.cc', 'mark-compact.cc', 'messages.cc'
, | 46 'jump-target.cc', 'log.cc', 'log-utils.cc', 'mark-compact.cc', 'messages.cc'
, |
47 'objects.cc', 'oprofile-agent.cc', 'parser.cc', 'property.cc', | 47 'objects.cc', 'oprofile-agent.cc', 'parser.cc', 'property.cc', |
48 'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc', | 48 'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc', |
49 'regexp-stack.cc', 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', | 49 'regexp-stack.cc', 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', |
50 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', | 50 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', |
51 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', | 51 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', |
52 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', | 52 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', |
53 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc', | 53 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 189 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
190 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 190 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
191 else: | 191 else: |
192 snapshot_obj = empty_snapshot_obj | 192 snapshot_obj = empty_snapshot_obj |
193 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 193 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
194 return (library_objs, d8_objs, [mksnapshot]) | 194 return (library_objs, d8_objs, [mksnapshot]) |
195 | 195 |
196 | 196 |
197 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 197 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
198 Return('library_objs d8_objs mksnapshot') | 198 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |