| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 liveedit.cc | 99 liveedit.cc |
| 100 liveobjectlist.cc | 100 liveobjectlist.cc |
| 101 log-utils.cc | 101 log-utils.cc |
| 102 log.cc | 102 log.cc |
| 103 mark-compact.cc | 103 mark-compact.cc |
| 104 messages.cc | 104 messages.cc |
| 105 objects-printer.cc | 105 objects-printer.cc |
| 106 objects-visiting.cc | 106 objects-visiting.cc |
| 107 objects.cc | 107 objects.cc |
| 108 once.cc | 108 once.cc |
| 109 optimizing-compiler-thread.cc |
| 109 parser.cc | 110 parser.cc |
| 110 preparse-data.cc | 111 preparse-data.cc |
| 111 preparser.cc | 112 preparser.cc |
| 112 profile-generator.cc | 113 profile-generator.cc |
| 113 property.cc | 114 property.cc |
| 114 regexp-macro-assembler-irregexp.cc | 115 regexp-macro-assembler-irregexp.cc |
| 115 regexp-macro-assembler.cc | 116 regexp-macro-assembler.cc |
| 116 regexp-stack.cc | 117 regexp-stack.cc |
| 117 rewriter.cc | 118 rewriter.cc |
| 118 runtime-profiler.cc | 119 runtime-profiler.cc |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 snapshot_cc = 'snapshot.cc' | 404 snapshot_cc = 'snapshot.cc' |
| 404 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 405 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 405 else: | 406 else: |
| 406 snapshot_obj = empty_snapshot_obj | 407 snapshot_obj = empty_snapshot_obj |
| 407 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 408 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
| 408 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 409 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 409 | 410 |
| 410 | 411 |
| 411 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 412 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 412 Return('library_objs d8_objs mksnapshot preparser_objs') | 413 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |