| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 global-handles.cc | 77 global-handles.cc |
| 78 fast-dtoa.cc | 78 fast-dtoa.cc |
| 79 fixed-dtoa.cc | 79 fixed-dtoa.cc |
| 80 handles.cc | 80 handles.cc |
| 81 heap-profiler.cc | 81 heap-profiler.cc |
| 82 heap.cc | 82 heap.cc |
| 83 hydrogen.cc | 83 hydrogen.cc |
| 84 hydrogen-instructions.cc | 84 hydrogen-instructions.cc |
| 85 ic.cc | 85 ic.cc |
| 86 incremental-marking.cc | 86 incremental-marking.cc |
| 87 interface.cc |
| 87 inspector.cc | 88 inspector.cc |
| 88 interpreter-irregexp.cc | 89 interpreter-irregexp.cc |
| 89 isolate.cc | 90 isolate.cc |
| 90 jsregexp.cc | 91 jsregexp.cc |
| 91 lithium-allocator.cc | 92 lithium-allocator.cc |
| 92 lithium.cc | 93 lithium.cc |
| 93 liveedit.cc | 94 liveedit.cc |
| 94 liveobjectlist.cc | 95 liveobjectlist.cc |
| 95 log-utils.cc | 96 log-utils.cc |
| 96 log.cc | 97 log.cc |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 snapshot_cc = 'snapshot.cc' | 398 snapshot_cc = 'snapshot.cc' |
| 398 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 399 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 399 else: | 400 else: |
| 400 snapshot_obj = empty_snapshot_obj | 401 snapshot_obj = empty_snapshot_obj |
| 401 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 402 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
| 402 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 403 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 403 | 404 |
| 404 | 405 |
| 405 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 406 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 406 Return('library_objs d8_objs mksnapshot preparser_objs') | 407 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |