| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 handles.cc | 78 handles.cc |
| 79 hashmap.cc | 79 hashmap.cc |
| 80 heap-profiler.cc | 80 heap-profiler.cc |
| 81 heap.cc | 81 heap.cc |
| 82 hydrogen.cc | 82 hydrogen.cc |
| 83 hydrogen-instructions.cc | 83 hydrogen-instructions.cc |
| 84 ic.cc | 84 ic.cc |
| 85 incremental-marking.cc | 85 incremental-marking.cc |
| 86 inspector.cc | 86 inspector.cc |
| 87 interpreter-irregexp.cc | 87 interpreter-irregexp.cc |
| 88 isolate.cc |
| 88 jsregexp.cc | 89 jsregexp.cc |
| 89 jump-target.cc | 90 jump-target.cc |
| 90 lithium-allocator.cc | 91 lithium-allocator.cc |
| 91 lithium.cc | 92 lithium.cc |
| 92 liveedit.cc | 93 liveedit.cc |
| 93 liveobjectlist.cc | 94 liveobjectlist.cc |
| 94 log-utils.cc | 95 log-utils.cc |
| 95 log.cc | 96 log.cc |
| 96 mark-compact.cc | 97 mark-compact.cc |
| 97 messages.cc | 98 messages.cc |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 snapshot_cc = 'snapshot.cc' | 350 snapshot_cc = 'snapshot.cc' |
| 350 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 351 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 351 else: | 352 else: |
| 352 snapshot_obj = empty_snapshot_obj | 353 snapshot_obj = empty_snapshot_obj |
| 353 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 354 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 354 return (library_objs, d8_objs, [mksnapshot]) | 355 return (library_objs, d8_objs, [mksnapshot]) |
| 355 | 356 |
| 356 | 357 |
| 357 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 358 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 358 Return('library_objs d8_objs mksnapshot') | 359 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |