| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 x64/code-stubs-x64.cc | 204 x64/code-stubs-x64.cc |
| 205 x64/codegen-x64.cc | 205 x64/codegen-x64.cc |
| 206 x64/cpu-x64.cc | 206 x64/cpu-x64.cc |
| 207 x64/debug-x64.cc | 207 x64/debug-x64.cc |
| 208 x64/deoptimizer-x64.cc | 208 x64/deoptimizer-x64.cc |
| 209 x64/disasm-x64.cc | 209 x64/disasm-x64.cc |
| 210 x64/frames-x64.cc | 210 x64/frames-x64.cc |
| 211 x64/full-codegen-x64.cc | 211 x64/full-codegen-x64.cc |
| 212 x64/ic-x64.cc | 212 x64/ic-x64.cc |
| 213 x64/jump-target-x64.cc | 213 x64/jump-target-x64.cc |
| 214 x64/lithium-x64.cc |
| 214 x64/macro-assembler-x64.cc | 215 x64/macro-assembler-x64.cc |
| 215 x64/regexp-macro-assembler-x64.cc | 216 x64/regexp-macro-assembler-x64.cc |
| 216 x64/register-allocator-x64.cc | 217 x64/register-allocator-x64.cc |
| 217 x64/stub-cache-x64.cc | 218 x64/stub-cache-x64.cc |
| 218 x64/virtual-frame-x64.cc | 219 x64/virtual-frame-x64.cc |
| 219 """), | 220 """), |
| 220 'simulator:arm': ['arm/simulator-arm.cc'], | 221 'simulator:arm': ['arm/simulator-arm.cc'], |
| 221 'simulator:mips': ['mips/simulator-mips.cc'], | 222 'simulator:mips': ['mips/simulator-mips.cc'], |
| 222 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], | 223 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
| 223 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], | 224 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 snapshot_cc = 'snapshot.cc' | 337 snapshot_cc = 'snapshot.cc' |
| 337 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 338 else: | 339 else: |
| 339 snapshot_obj = empty_snapshot_obj | 340 snapshot_obj = empty_snapshot_obj |
| 340 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 341 return (library_objs, d8_objs, [mksnapshot]) | 342 return (library_objs, d8_objs, [mksnapshot]) |
| 342 | 343 |
| 343 | 344 |
| 344 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 345 Return('library_objs d8_objs mksnapshot') | 346 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |