OLD | NEW |
1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 jump-target.cc | 82 jump-target.cc |
83 liveedit.cc | 83 liveedit.cc |
84 log-utils.cc | 84 log-utils.cc |
85 log.cc | 85 log.cc |
86 mark-compact.cc | 86 mark-compact.cc |
87 messages.cc | 87 messages.cc |
88 objects.cc | 88 objects.cc |
89 objects-visiting.cc | 89 objects-visiting.cc |
90 oprofile-agent.cc | 90 oprofile-agent.cc |
91 parser.cc | 91 parser.cc |
| 92 preparser.cc |
| 93 preparse-data.cc |
92 profile-generator.cc | 94 profile-generator.cc |
93 property.cc | 95 property.cc |
94 regexp-macro-assembler-irregexp.cc | 96 regexp-macro-assembler-irregexp.cc |
95 regexp-macro-assembler.cc | 97 regexp-macro-assembler.cc |
96 regexp-stack.cc | 98 regexp-stack.cc |
97 register-allocator.cc | 99 register-allocator.cc |
98 rewriter.cc | 100 rewriter.cc |
99 runtime.cc | 101 runtime.cc |
100 scanner-base.cc | 102 scanner-base.cc |
101 scanner.cc | 103 scanner.cc |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 snapshot_cc = 'snapshot.cc' | 326 snapshot_cc = 'snapshot.cc' |
325 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 327 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
326 else: | 328 else: |
327 snapshot_obj = empty_snapshot_obj | 329 snapshot_obj = empty_snapshot_obj |
328 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 330 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
329 return (library_objs, d8_objs, [mksnapshot]) | 331 return (library_objs, d8_objs, [mksnapshot]) |
330 | 332 |
331 | 333 |
332 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 334 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
333 Return('library_objs d8_objs mksnapshot') | 335 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |