| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'stub-cache-arm.cc', 'virtual-frame-arm.cc' | 59 'stub-cache-arm.cc', 'virtual-frame-arm.cc' |
| 60 ], | 60 ], |
| 61 'arch:ia32': [ | 61 'arch:ia32': [ |
| 62 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', | 62 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', |
| 63 'cpu-ia32.cc', 'disasm-ia32.cc', 'debug-ia32.cc', 'frames-ia32.cc', | 63 'cpu-ia32.cc', 'disasm-ia32.cc', 'debug-ia32.cc', 'frames-ia32.cc', |
| 64 'ic-ia32.cc', 'jump-target-ia32.cc', 'macro-assembler-ia32.cc', | 64 'ic-ia32.cc', 'jump-target-ia32.cc', 'macro-assembler-ia32.cc', |
| 65 'regexp-macro-assembler-ia32.cc', 'register-allocator-ia32.cc', | 65 'regexp-macro-assembler-ia32.cc', 'register-allocator-ia32.cc', |
| 66 'stub-cache-ia32.cc', 'virtual-frame-ia32.cc' | 66 'stub-cache-ia32.cc', 'virtual-frame-ia32.cc' |
| 67 ], | 67 ], |
| 68 'simulator:arm': ['simulator-arm.cc'], | 68 'simulator:arm': ['simulator-arm.cc'], |
| 69 'os:freebsd': ['platform-freebsd.cc'], | 69 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
| 70 'os:linux': ['platform-linux.cc'], | 70 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
| 71 'os:android': ['platform-linux.cc'], | 71 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
| 72 'os:macos': ['platform-macos.cc'], | 72 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
| 73 'os:nullos': ['platform-nullos.cc'], | 73 'os:nullos': ['platform-nullos.cc'], |
| 74 'os:win32': ['platform-win32.cc'], | 74 'os:win32': ['platform-win32.cc'], |
| 75 'mode:release': [], | 75 'mode:release': [], |
| 76 'mode:debug': [ | 76 'mode:debug': [ |
| 77 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 77 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
| 78 ] | 78 ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 | 81 |
| 82 D8_FILES = { | 82 D8_FILES = { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 155 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 156 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 156 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 157 else: | 157 else: |
| 158 snapshot_obj = empty_snapshot_obj | 158 snapshot_obj = empty_snapshot_obj |
| 159 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 159 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 160 return (library_objs, d8_objs, [mksnapshot]) | 160 return (library_objs, d8_objs, [mksnapshot]) |
| 161 | 161 |
| 162 | 162 |
| 163 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 163 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 164 Return('library_objs d8_objs mksnapshot') | 164 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |