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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 bootstrapper.cc | 43 bootstrapper.cc |
44 builtins.cc | 44 builtins.cc |
45 checks.cc | 45 checks.cc |
46 code-stubs.cc | 46 code-stubs.cc |
47 codegen.cc | 47 codegen.cc |
48 compilation-cache.cc | 48 compilation-cache.cc |
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 data-flow.cc |
53 dateparser.cc | 54 dateparser.cc |
54 debug-agent.cc | 55 debug-agent.cc |
55 debug.cc | 56 debug.cc |
56 disassembler.cc | 57 disassembler.cc |
57 execution.cc | 58 execution.cc |
58 factory.cc | 59 factory.cc |
59 fast-codegen.cc | 60 fast-codegen.cc |
60 flags.cc | 61 flags.cc |
61 frame-element.cc | 62 frame-element.cc |
62 frames.cc | 63 frames.cc |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 snapshot_cc = Command('snapshot.cc', [], []) | 280 snapshot_cc = Command('snapshot.cc', [], []) |
280 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 281 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
281 else: | 282 else: |
282 snapshot_obj = empty_snapshot_obj | 283 snapshot_obj = empty_snapshot_obj |
283 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 284 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
284 return (library_objs, d8_objs, [mksnapshot]) | 285 return (library_objs, d8_objs, [mksnapshot]) |
285 | 286 |
286 | 287 |
287 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 288 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
288 Return('library_objs d8_objs mksnapshot') | 289 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |