| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 arm/fast-codegen-arm.cc | 129 arm/fast-codegen-arm.cc |
| 130 arm/frames-arm.cc | 130 arm/frames-arm.cc |
| 131 arm/full-codegen-arm.cc | 131 arm/full-codegen-arm.cc |
| 132 arm/ic-arm.cc | 132 arm/ic-arm.cc |
| 133 arm/jump-target-arm.cc | 133 arm/jump-target-arm.cc |
| 134 arm/macro-assembler-arm.cc | 134 arm/macro-assembler-arm.cc |
| 135 arm/regexp-macro-assembler-arm.cc | 135 arm/regexp-macro-assembler-arm.cc |
| 136 arm/register-allocator-arm.cc | 136 arm/register-allocator-arm.cc |
| 137 arm/stub-cache-arm.cc | 137 arm/stub-cache-arm.cc |
| 138 arm/virtual-frame-arm.cc | 138 arm/virtual-frame-arm.cc |
| 139 """), | |
| 140 'armvariant:arm': Split(""" | |
| 141 arm/assembler-arm.cc | 139 arm/assembler-arm.cc |
| 142 """), | 140 """), |
| 143 'armvariant:thumb2': Split(""" | |
| 144 arm/assembler-thumb2.cc | |
| 145 """), | |
| 146 'arch:mips': Split(""" | 141 'arch:mips': Split(""" |
| 147 fast-codegen.cc | 142 fast-codegen.cc |
| 148 mips/assembler-mips.cc | 143 mips/assembler-mips.cc |
| 149 mips/builtins-mips.cc | 144 mips/builtins-mips.cc |
| 150 mips/codegen-mips.cc | 145 mips/codegen-mips.cc |
| 151 mips/constants-mips.cc | 146 mips/constants-mips.cc |
| 152 mips/cpu-mips.cc | 147 mips/cpu-mips.cc |
| 153 mips/debug-mips.cc | 148 mips/debug-mips.cc |
| 154 mips/disasm-mips.cc | 149 mips/disasm-mips.cc |
| 155 mips/fast-codegen-mips.cc | 150 mips/fast-codegen-mips.cc |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 snapshot_cc = 'snapshot.cc' | 321 snapshot_cc = 'snapshot.cc' |
| 327 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 322 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 328 else: | 323 else: |
| 329 snapshot_obj = empty_snapshot_obj | 324 snapshot_obj = empty_snapshot_obj |
| 330 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 325 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 331 return (library_objs, d8_objs, [mksnapshot]) | 326 return (library_objs, d8_objs, [mksnapshot]) |
| 332 | 327 |
| 333 | 328 |
| 334 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 329 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 335 Return('library_objs d8_objs mksnapshot') | 330 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |