| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', | 48 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', |
| 49 'v8.cc', 'v8threads.cc', 'variables.cc', 'zone.cc' | 49 'v8.cc', 'v8threads.cc', 'variables.cc', 'zone.cc' |
| 50 ], | 50 ], |
| 51 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', | 51 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', |
| 52 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', | 52 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', |
| 53 'macro-assembler-arm.cc', 'stub-cache-arm.cc'], | 53 'macro-assembler-arm.cc', 'stub-cache-arm.cc'], |
| 54 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', | 54 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', |
| 55 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc', | 55 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc', |
| 56 'macro-assembler-ia32.cc', 'stub-cache-ia32.cc'], | 56 'macro-assembler-ia32.cc', 'stub-cache-ia32.cc'], |
| 57 'simulator:arm': ['simulator-arm.cc'], | 57 'simulator:arm': ['simulator-arm.cc'], |
| 58 'os:linux': ['platform-linux.cc'], | 58 'os:freebsd': ['platform-freebsd.cc'], |
| 59 'os:macos': ['platform-macos.cc'], | 59 'os:linux': ['platform-linux.cc'], |
| 60 'os:nullos': ['platform-nullos.cc'], | 60 'os:macos': ['platform-macos.cc'], |
| 61 'os:win32': ['platform-win32.cc'], | 61 'os:nullos': ['platform-nullos.cc'], |
| 62 'os:win32': ['platform-win32.cc'], |
| 62 'mode:release': [], | 63 'mode:release': [], |
| 63 'mode:debug': ['objects-debug.cc', 'prettyprinter.cc'] | 64 'mode:debug': ['objects-debug.cc', 'prettyprinter.cc'] |
| 64 } | 65 } |
| 65 | 66 |
| 66 | 67 |
| 67 D8_FILES = { | 68 D8_FILES = { |
| 68 'all': [ | 69 'all': [ |
| 69 'd8.cc' | 70 'd8.cc' |
| 70 ], | 71 ], |
| 71 'console:readline': [ | 72 'console:readline': [ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 152 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 152 else: | 153 else: |
| 153 snapshot_obj = empty_snapshot_obj | 154 snapshot_obj = empty_snapshot_obj |
| 154 | 155 |
| 155 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 156 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 156 return (library_objs, d8_objs) | 157 return (library_objs, d8_objs) |
| 157 | 158 |
| 158 | 159 |
| 159 (library_objs, d8_objs) = ConfigureObjectFiles() | 160 (library_objs, d8_objs) = ConfigureObjectFiles() |
| 160 Return('library_objs d8_objs') | 161 Return('library_objs d8_objs') |
| OLD | NEW |