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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 arm/cpu-arm.cc | 146 arm/cpu-arm.cc |
147 arm/debug-arm.cc | 147 arm/debug-arm.cc |
148 arm/deoptimizer-arm.cc | 148 arm/deoptimizer-arm.cc |
149 arm/disasm-arm.cc | 149 arm/disasm-arm.cc |
150 arm/frames-arm.cc | 150 arm/frames-arm.cc |
151 arm/full-codegen-arm.cc | 151 arm/full-codegen-arm.cc |
152 arm/ic-arm.cc | 152 arm/ic-arm.cc |
153 arm/jump-target-arm.cc | 153 arm/jump-target-arm.cc |
154 arm/lithium-arm.cc | 154 arm/lithium-arm.cc |
155 arm/lithium-codegen-arm.cc | 155 arm/lithium-codegen-arm.cc |
| 156 arm/lithium-gap-resolver-arm.cc |
156 arm/macro-assembler-arm.cc | 157 arm/macro-assembler-arm.cc |
157 arm/regexp-macro-assembler-arm.cc | 158 arm/regexp-macro-assembler-arm.cc |
158 arm/register-allocator-arm.cc | 159 arm/register-allocator-arm.cc |
159 arm/stub-cache-arm.cc | 160 arm/stub-cache-arm.cc |
160 arm/virtual-frame-arm.cc | 161 arm/virtual-frame-arm.cc |
161 arm/assembler-arm.cc | 162 arm/assembler-arm.cc |
162 """), | 163 """), |
163 'arch:mips': Split(""" | 164 'arch:mips': Split(""" |
164 mips/assembler-mips.cc | 165 mips/assembler-mips.cc |
165 mips/builtins-mips.cc | 166 mips/builtins-mips.cc |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 snapshot_cc = 'snapshot.cc' | 343 snapshot_cc = 'snapshot.cc' |
343 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 344 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
344 else: | 345 else: |
345 snapshot_obj = empty_snapshot_obj | 346 snapshot_obj = empty_snapshot_obj |
346 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 347 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
347 return (library_objs, d8_objs, [mksnapshot]) | 348 return (library_objs, d8_objs, [mksnapshot]) |
348 | 349 |
349 | 350 |
350 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 351 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
351 Return('library_objs d8_objs mksnapshot') | 352 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |