OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 global-handles.cc | 77 global-handles.cc |
78 fast-dtoa.cc | 78 fast-dtoa.cc |
79 fixed-dtoa.cc | 79 fixed-dtoa.cc |
80 handles.cc | 80 handles.cc |
81 hashmap.cc | 81 hashmap.cc |
82 heap-profiler.cc | 82 heap-profiler.cc |
83 heap.cc | 83 heap.cc |
84 hydrogen.cc | 84 hydrogen.cc |
85 hydrogen-instructions.cc | 85 hydrogen-instructions.cc |
86 ic.cc | 86 ic.cc |
| 87 incremental-marking.cc |
87 inspector.cc | 88 inspector.cc |
88 interpreter-irregexp.cc | 89 interpreter-irregexp.cc |
89 isolate.cc | 90 isolate.cc |
90 jsregexp.cc | 91 jsregexp.cc |
91 lithium-allocator.cc | 92 lithium-allocator.cc |
92 lithium.cc | 93 lithium.cc |
93 liveedit.cc | 94 liveedit.cc |
94 liveobjectlist.cc | 95 liveobjectlist.cc |
95 log-utils.cc | 96 log-utils.cc |
96 log.cc | 97 log.cc |
(...skipping 29 matching lines...) Expand all Loading... |
126 type-info.cc | 127 type-info.cc |
127 unicode.cc | 128 unicode.cc |
128 utils.cc | 129 utils.cc |
129 v8-counters.cc | 130 v8-counters.cc |
130 v8.cc | 131 v8.cc |
131 v8conversions.cc | 132 v8conversions.cc |
132 v8threads.cc | 133 v8threads.cc |
133 v8utils.cc | 134 v8utils.cc |
134 variables.cc | 135 variables.cc |
135 version.cc | 136 version.cc |
| 137 store-buffer.cc |
136 zone.cc | 138 zone.cc |
137 extensions/gc-extension.cc | 139 extensions/gc-extension.cc |
138 extensions/externalize-string-extension.cc | 140 extensions/externalize-string-extension.cc |
139 """), | 141 """), |
140 'arch:arm': Split(""" | 142 'arch:arm': Split(""" |
141 arm/builtins-arm.cc | 143 arm/builtins-arm.cc |
142 arm/code-stubs-arm.cc | 144 arm/code-stubs-arm.cc |
143 arm/codegen-arm.cc | 145 arm/codegen-arm.cc |
144 arm/constants-arm.cc | 146 arm/constants-arm.cc |
145 arm/cpu-arm.cc | 147 arm/cpu-arm.cc |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 snapshot_cc = 'snapshot.cc' | 396 snapshot_cc = 'snapshot.cc' |
395 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 397 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
396 else: | 398 else: |
397 snapshot_obj = empty_snapshot_obj | 399 snapshot_obj = empty_snapshot_obj |
398 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 400 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
399 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 401 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
400 | 402 |
401 | 403 |
402 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 404 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
403 Return('library_objs d8_objs mksnapshot preparser_objs') | 405 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |