| 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 25 matching lines...) Expand all Loading... |
| 36 SOURCES = { | 36 SOURCES = { |
| 37 'all': Split(""" | 37 'all': Split(""" |
| 38 accessors.cc | 38 accessors.cc |
| 39 allocation.cc | 39 allocation.cc |
| 40 api.cc | 40 api.cc |
| 41 assembler.cc | 41 assembler.cc |
| 42 ast.cc | 42 ast.cc |
| 43 bootstrapper.cc | 43 bootstrapper.cc |
| 44 builtins.cc | 44 builtins.cc |
| 45 checks.cc | 45 checks.cc |
| 46 circular-queue.cc |
| 46 code-stubs.cc | 47 code-stubs.cc |
| 47 codegen.cc | 48 codegen.cc |
| 48 compilation-cache.cc | 49 compilation-cache.cc |
| 49 compiler.cc | 50 compiler.cc |
| 50 contexts.cc | 51 contexts.cc |
| 51 conversions.cc | 52 conversions.cc |
| 52 counters.cc | 53 counters.cc |
| 54 cpu-profiler.cc |
| 53 data-flow.cc | 55 data-flow.cc |
| 54 dateparser.cc | 56 dateparser.cc |
| 55 debug-agent.cc | 57 debug-agent.cc |
| 56 debug.cc | 58 debug.cc |
| 57 disassembler.cc | 59 disassembler.cc |
| 60 diy-fp.cc |
| 58 execution.cc | 61 execution.cc |
| 59 factory.cc | 62 factory.cc |
| 60 flags.cc | 63 flags.cc |
| 61 frame-element.cc | 64 frame-element.cc |
| 62 frames.cc | 65 frames.cc |
| 63 full-codegen.cc | 66 full-codegen.cc |
| 64 func-name-inferrer.cc | 67 func-name-inferrer.cc |
| 65 global-handles.cc | 68 global-handles.cc |
| 69 fast-dtoa.cc |
| 66 handles.cc | 70 handles.cc |
| 67 hashmap.cc | 71 hashmap.cc |
| 68 heap-profiler.cc | 72 heap-profiler.cc |
| 69 heap.cc | 73 heap.cc |
| 70 ic.cc | 74 ic.cc |
| 71 interpreter-irregexp.cc | 75 interpreter-irregexp.cc |
| 72 jsregexp.cc | 76 jsregexp.cc |
| 73 jump-target.cc | 77 jump-target.cc |
| 74 liveedit.cc | 78 liveedit.cc |
| 75 log-utils.cc | 79 log-utils.cc |
| 76 log.cc | 80 log.cc |
| 77 mark-compact.cc | 81 mark-compact.cc |
| 78 messages.cc | 82 messages.cc |
| 79 objects.cc | 83 objects.cc |
| 80 oprofile-agent.cc | 84 oprofile-agent.cc |
| 81 parser.cc | 85 parser.cc |
| 86 profile-generator.cc |
| 82 property.cc | 87 property.cc |
| 83 regexp-macro-assembler-irregexp.cc | 88 regexp-macro-assembler-irregexp.cc |
| 84 regexp-macro-assembler.cc | 89 regexp-macro-assembler.cc |
| 85 regexp-stack.cc | 90 regexp-stack.cc |
| 86 register-allocator.cc | 91 register-allocator.cc |
| 87 rewriter.cc | 92 rewriter.cc |
| 88 runtime.cc | 93 runtime.cc |
| 89 scanner.cc | 94 scanner.cc |
| 90 scopeinfo.cc | 95 scopeinfo.cc |
| 91 scopes.cc | 96 scopes.cc |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 snapshot_cc = Command('snapshot.cc', [], []) | 310 snapshot_cc = Command('snapshot.cc', [], []) |
| 306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 311 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 307 else: | 312 else: |
| 308 snapshot_obj = empty_snapshot_obj | 313 snapshot_obj = empty_snapshot_obj |
| 309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 314 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 310 return (library_objs, d8_objs, [mksnapshot]) | 315 return (library_objs, d8_objs, [mksnapshot]) |
| 311 | 316 |
| 312 | 317 |
| 313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 318 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 314 Return('library_objs d8_objs mksnapshot') | 319 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |