| OLD | NEW |
| 1 # Copyright 2008 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 |
| 11 # with the distribution. | 11 # with the distribution. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 hashmap.cc | 78 hashmap.cc |
| 79 heap-profiler.cc | 79 heap-profiler.cc |
| 80 heap.cc | 80 heap.cc |
| 81 hydrogen.cc | 81 hydrogen.cc |
| 82 hydrogen-instructions.cc | 82 hydrogen-instructions.cc |
| 83 ic.cc | 83 ic.cc |
| 84 interpreter-irregexp.cc | 84 interpreter-irregexp.cc |
| 85 jsregexp.cc | 85 jsregexp.cc |
| 86 jump-target.cc | 86 jump-target.cc |
| 87 lithium-allocator.cc | 87 lithium-allocator.cc |
| 88 lithium.cc |
| 88 liveedit.cc | 89 liveedit.cc |
| 89 log-utils.cc | 90 log-utils.cc |
| 90 log.cc | 91 log.cc |
| 91 mark-compact.cc | 92 mark-compact.cc |
| 92 messages.cc | 93 messages.cc |
| 93 objects.cc | 94 objects.cc |
| 94 objects-visiting.cc | 95 objects-visiting.cc |
| 95 oprofile-agent.cc | 96 oprofile-agent.cc |
| 96 parser.cc | 97 parser.cc |
| 97 preparser.cc | 98 preparser.cc |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 snapshot_cc = 'snapshot.cc' | 338 snapshot_cc = 'snapshot.cc' |
| 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 339 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 339 else: | 340 else: |
| 340 snapshot_obj = empty_snapshot_obj | 341 snapshot_obj = empty_snapshot_obj |
| 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 342 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 342 return (library_objs, d8_objs, [mksnapshot]) | 343 return (library_objs, d8_objs, [mksnapshot]) |
| 343 | 344 |
| 344 | 345 |
| 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 346 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 346 Return('library_objs d8_objs mksnapshot') | 347 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |