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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 disassembler.cc | 64 disassembler.cc |
65 diy-fp.cc | 65 diy-fp.cc |
66 dtoa.cc | 66 dtoa.cc |
67 execution.cc | 67 execution.cc |
68 factory.cc | 68 factory.cc |
69 flags.cc | 69 flags.cc |
70 frame-element.cc | 70 frame-element.cc |
71 frames.cc | 71 frames.cc |
72 full-codegen.cc | 72 full-codegen.cc |
73 func-name-inferrer.cc | 73 func-name-inferrer.cc |
| 74 gdbjit.cc |
74 global-handles.cc | 75 global-handles.cc |
75 fast-dtoa.cc | 76 fast-dtoa.cc |
76 fixed-dtoa.cc | 77 fixed-dtoa.cc |
77 handles.cc | 78 handles.cc |
78 hashmap.cc | 79 hashmap.cc |
79 heap-profiler.cc | 80 heap-profiler.cc |
80 heap.cc | 81 heap.cc |
81 hydrogen.cc | 82 hydrogen.cc |
82 hydrogen-instructions.cc | 83 hydrogen-instructions.cc |
83 ic.cc | 84 ic.cc |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 snapshot_cc = 'snapshot.cc' | 337 snapshot_cc = 'snapshot.cc' |
337 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
338 else: | 339 else: |
339 snapshot_obj = empty_snapshot_obj | 340 snapshot_obj = empty_snapshot_obj |
340 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
341 return (library_objs, d8_objs, [mksnapshot]) | 342 return (library_objs, d8_objs, [mksnapshot]) |
342 | 343 |
343 | 344 |
344 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
345 Return('library_objs d8_objs mksnapshot') | 346 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |