| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 global-handles.cc | 75 global-handles.cc |
| 76 fast-dtoa.cc | 76 fast-dtoa.cc |
| 77 fixed-dtoa.cc | 77 fixed-dtoa.cc |
| 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 inspector.cc |
| 85 interpreter-irregexp.cc | 86 interpreter-irregexp.cc |
| 86 jsregexp.cc | 87 jsregexp.cc |
| 87 jump-target.cc | 88 jump-target.cc |
| 88 lithium-allocator.cc | 89 lithium-allocator.cc |
| 89 lithium.cc | 90 lithium.cc |
| 90 liveedit.cc | 91 liveedit.cc |
| 91 log-utils.cc | 92 log-utils.cc |
| 92 log.cc | 93 log.cc |
| 93 mark-compact.cc | 94 mark-compact.cc |
| 94 messages.cc | 95 messages.cc |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 snapshot_cc = 'snapshot.cc' | 342 snapshot_cc = 'snapshot.cc' |
| 342 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 343 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 343 else: | 344 else: |
| 344 snapshot_obj = empty_snapshot_obj | 345 snapshot_obj = empty_snapshot_obj |
| 345 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 346 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 346 return (library_objs, d8_objs, [mksnapshot]) | 347 return (library_objs, d8_objs, [mksnapshot]) |
| 347 | 348 |
| 348 | 349 |
| 349 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 350 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 350 Return('library_objs d8_objs mksnapshot') | 351 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |