| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 func-name-inferrer.cc | 82 func-name-inferrer.cc |
| 83 gdb-jit.cc | 83 gdb-jit.cc |
| 84 global-handles.cc | 84 global-handles.cc |
| 85 handles.cc | 85 handles.cc |
| 86 heap-profiler.cc | 86 heap-profiler.cc |
| 87 heap.cc | 87 heap.cc |
| 88 hydrogen-instructions.cc | 88 hydrogen-instructions.cc |
| 89 hydrogen.cc | 89 hydrogen.cc |
| 90 ic.cc | 90 ic.cc |
| 91 incremental-marking.cc | 91 incremental-marking.cc |
| 92 inspector.cc | |
| 93 interface.cc | 92 interface.cc |
| 94 interpreter-irregexp.cc | 93 interpreter-irregexp.cc |
| 95 isolate.cc | 94 isolate.cc |
| 96 jsregexp.cc | 95 jsregexp.cc |
| 97 lithium-allocator.cc | 96 lithium-allocator.cc |
| 98 lithium.cc | 97 lithium.cc |
| 99 liveedit.cc | 98 liveedit.cc |
| 100 liveobjectlist.cc | |
| 101 log-utils.cc | 99 log-utils.cc |
| 102 log.cc | 100 log.cc |
| 103 mark-compact.cc | 101 mark-compact.cc |
| 104 messages.cc | 102 messages.cc |
| 105 objects-printer.cc | 103 objects-printer.cc |
| 106 objects-visiting.cc | 104 objects-visiting.cc |
| 107 objects.cc | 105 objects.cc |
| 108 once.cc | 106 once.cc |
| 109 optimizing-compiler-thread.cc | 107 optimizing-compiler-thread.cc |
| 110 parser.cc | 108 parser.cc |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 snapshot_cc = 'snapshot.cc' | 402 snapshot_cc = 'snapshot.cc' |
| 405 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 403 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 406 else: | 404 else: |
| 407 snapshot_obj = empty_snapshot_obj | 405 snapshot_obj = empty_snapshot_obj |
| 408 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 406 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
| 409 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 407 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 410 | 408 |
| 411 | 409 |
| 412 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 410 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 413 Return('library_objs d8_objs mksnapshot preparser_objs') | 411 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |