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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 compiler.cc | 49 compiler.cc |
50 contexts.cc | 50 contexts.cc |
51 conversions.cc | 51 conversions.cc |
52 counters.cc | 52 counters.cc |
53 dateparser.cc | 53 dateparser.cc |
54 debug-agent.cc | 54 debug-agent.cc |
55 debug.cc | 55 debug.cc |
56 disassembler.cc | 56 disassembler.cc |
57 execution.cc | 57 execution.cc |
58 factory.cc | 58 factory.cc |
| 59 fast-codegen.cc |
59 flags.cc | 60 flags.cc |
60 frame-element.cc | 61 frame-element.cc |
61 frames.cc | 62 frames.cc |
62 full-codegen.cc | 63 full-codegen.cc |
63 func-name-inferrer.cc | 64 func-name-inferrer.cc |
64 global-handles.cc | 65 global-handles.cc |
65 handles.cc | 66 handles.cc |
66 hashmap.cc | 67 hashmap.cc |
67 heap-profiler.cc | 68 heap-profiler.cc |
68 heap.cc | 69 heap.cc |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 snapshot_cc = Command('snapshot.cc', [], []) | 279 snapshot_cc = Command('snapshot.cc', [], []) |
279 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 280 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
280 else: | 281 else: |
281 snapshot_obj = empty_snapshot_obj | 282 snapshot_obj = empty_snapshot_obj |
282 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 283 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
283 return (library_objs, d8_objs, [mksnapshot]) | 284 return (library_objs, d8_objs, [mksnapshot]) |
284 | 285 |
285 | 286 |
286 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 287 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
287 Return('library_objs d8_objs mksnapshot') | 288 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |