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