| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 arm/lithium-codegen-arm.cc | 156 arm/lithium-codegen-arm.cc |
| 157 arm/lithium-gap-resolver-arm.cc | 157 arm/lithium-gap-resolver-arm.cc |
| 158 arm/macro-assembler-arm.cc | 158 arm/macro-assembler-arm.cc |
| 159 arm/regexp-macro-assembler-arm.cc | 159 arm/regexp-macro-assembler-arm.cc |
| 160 arm/register-allocator-arm.cc | 160 arm/register-allocator-arm.cc |
| 161 arm/stub-cache-arm.cc | 161 arm/stub-cache-arm.cc |
| 162 arm/virtual-frame-arm.cc | 162 arm/virtual-frame-arm.cc |
| 163 arm/assembler-arm.cc | 163 arm/assembler-arm.cc |
| 164 """), | 164 """), |
| 165 'arch:mips': Split(""" | 165 'arch:mips': Split(""" |
| 166 jump-target-light.cc |
| 167 virtual-frame-light.cc |
| 166 mips/assembler-mips.cc | 168 mips/assembler-mips.cc |
| 167 mips/builtins-mips.cc | 169 mips/builtins-mips.cc |
| 170 mips/code-stubs-mips.cc |
| 168 mips/codegen-mips.cc | 171 mips/codegen-mips.cc |
| 169 mips/constants-mips.cc | 172 mips/constants-mips.cc |
| 170 mips/cpu-mips.cc | 173 mips/cpu-mips.cc |
| 171 mips/debug-mips.cc | 174 mips/debug-mips.cc |
| 175 mips/deoptimizer-mips.cc |
| 172 mips/disasm-mips.cc | 176 mips/disasm-mips.cc |
| 177 mips/frames-mips.cc |
| 173 mips/full-codegen-mips.cc | 178 mips/full-codegen-mips.cc |
| 174 mips/frames-mips.cc | |
| 175 mips/ic-mips.cc | 179 mips/ic-mips.cc |
| 176 mips/jump-target-mips.cc | 180 mips/jump-target-mips.cc |
| 177 mips/macro-assembler-mips.cc | 181 mips/macro-assembler-mips.cc |
| 182 mips/regexp-macro-assembler-mips.cc |
| 178 mips/register-allocator-mips.cc | 183 mips/register-allocator-mips.cc |
| 179 mips/stub-cache-mips.cc | 184 mips/stub-cache-mips.cc |
| 180 mips/virtual-frame-mips.cc | 185 mips/virtual-frame-mips.cc |
| 181 """), | 186 """), |
| 182 'arch:ia32': Split(""" | 187 'arch:ia32': Split(""" |
| 183 jump-target-heavy.cc | 188 jump-target-heavy.cc |
| 184 virtual-frame-heavy.cc | 189 virtual-frame-heavy.cc |
| 185 ia32/assembler-ia32.cc | 190 ia32/assembler-ia32.cc |
| 186 ia32/builtins-ia32.cc | 191 ia32/builtins-ia32.cc |
| 187 ia32/code-stubs-ia32.cc | 192 ia32/code-stubs-ia32.cc |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 snapshot_cc = 'snapshot.cc' | 353 snapshot_cc = 'snapshot.cc' |
| 349 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 354 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 350 else: | 355 else: |
| 351 snapshot_obj = empty_snapshot_obj | 356 snapshot_obj = empty_snapshot_obj |
| 352 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 357 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 353 return (library_objs, d8_objs, [mksnapshot]) | 358 return (library_objs, d8_objs, [mksnapshot]) |
| 354 | 359 |
| 355 | 360 |
| 356 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 361 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 357 Return('library_objs d8_objs mksnapshot') | 362 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |