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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 lithium.cc | 94 lithium.cc |
95 liveedit.cc | 95 liveedit.cc |
96 liveobjectlist.cc | 96 liveobjectlist.cc |
97 log-utils.cc | 97 log-utils.cc |
98 log.cc | 98 log.cc |
99 mark-compact.cc | 99 mark-compact.cc |
100 messages.cc | 100 messages.cc |
101 objects.cc | 101 objects.cc |
102 objects-printer.cc | 102 objects-printer.cc |
103 objects-visiting.cc | 103 objects-visiting.cc |
| 104 once.cc |
104 parser.cc | 105 parser.cc |
105 preparser.cc | 106 preparser.cc |
106 preparse-data.cc | 107 preparse-data.cc |
107 profile-generator.cc | 108 profile-generator.cc |
108 property.cc | 109 property.cc |
109 regexp-macro-assembler-irregexp.cc | 110 regexp-macro-assembler-irregexp.cc |
110 regexp-macro-assembler.cc | 111 regexp-macro-assembler.cc |
111 regexp-stack.cc | 112 regexp-stack.cc |
112 rewriter.cc | 113 rewriter.cc |
113 runtime.cc | 114 runtime.cc |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 snapshot_cc = 'snapshot.cc' | 400 snapshot_cc = 'snapshot.cc' |
400 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 401 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
401 else: | 402 else: |
402 snapshot_obj = empty_snapshot_obj | 403 snapshot_obj = empty_snapshot_obj |
403 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 404 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
404 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 405 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
405 | 406 |
406 | 407 |
407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 408 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
408 Return('library_objs d8_objs mksnapshot preparser_objs') | 409 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |