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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 debug.cc | 65 debug.cc |
66 deoptimizer.cc | 66 deoptimizer.cc |
67 disassembler.cc | 67 disassembler.cc |
68 diy-fp.cc | 68 diy-fp.cc |
69 dtoa.cc | 69 dtoa.cc |
70 elements-kind.cc | 70 elements-kind.cc |
71 elements.cc | 71 elements.cc |
72 execution.cc | 72 execution.cc |
73 extensions/externalize-string-extension.cc | 73 extensions/externalize-string-extension.cc |
74 extensions/gc-extension.cc | 74 extensions/gc-extension.cc |
| 75 extensions/statistics-extension.cc |
75 factory.cc | 76 factory.cc |
76 fast-dtoa.cc | 77 fast-dtoa.cc |
77 fixed-dtoa.cc | 78 fixed-dtoa.cc |
78 flags.cc | 79 flags.cc |
79 frames.cc | 80 frames.cc |
80 full-codegen.cc | 81 full-codegen.cc |
81 func-name-inferrer.cc | 82 func-name-inferrer.cc |
82 gdb-jit.cc | 83 gdb-jit.cc |
83 global-handles.cc | 84 global-handles.cc |
84 handles.cc | 85 handles.cc |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 snapshot_cc = 'snapshot.cc' | 403 snapshot_cc = 'snapshot.cc' |
403 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 404 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
404 else: | 405 else: |
405 snapshot_obj = empty_snapshot_obj | 406 snapshot_obj = empty_snapshot_obj |
406 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 407 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
407 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 408 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
408 | 409 |
409 | 410 |
410 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 411 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
411 Return('library_objs d8_objs mksnapshot preparser_objs') | 412 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |