| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ia32/debug-ia32.cc | 159 ia32/debug-ia32.cc |
| 160 ia32/disasm-ia32.cc | 160 ia32/disasm-ia32.cc |
| 161 ia32/fast-codegen-ia32.cc | 161 ia32/fast-codegen-ia32.cc |
| 162 ia32/frames-ia32.cc | 162 ia32/frames-ia32.cc |
| 163 ia32/full-codegen-ia32.cc | 163 ia32/full-codegen-ia32.cc |
| 164 ia32/ic-ia32.cc | 164 ia32/ic-ia32.cc |
| 165 ia32/jump-target-ia32.cc | 165 ia32/jump-target-ia32.cc |
| 166 ia32/macro-assembler-ia32.cc | 166 ia32/macro-assembler-ia32.cc |
| 167 ia32/regexp-macro-assembler-ia32.cc | 167 ia32/regexp-macro-assembler-ia32.cc |
| 168 ia32/register-allocator-ia32.cc | 168 ia32/register-allocator-ia32.cc |
| 169 ia32/safe-codegen-ia32.cc |
| 169 ia32/stub-cache-ia32.cc | 170 ia32/stub-cache-ia32.cc |
| 170 ia32/virtual-frame-ia32.cc | 171 ia32/virtual-frame-ia32.cc |
| 171 """), | 172 """), |
| 172 'arch:x64': Split(""" | 173 'arch:x64': Split(""" |
| 173 fast-codegen.cc | 174 fast-codegen.cc |
| 174 x64/assembler-x64.cc | 175 x64/assembler-x64.cc |
| 175 x64/builtins-x64.cc | 176 x64/builtins-x64.cc |
| 176 x64/codegen-x64.cc | 177 x64/codegen-x64.cc |
| 177 x64/cpu-x64.cc | 178 x64/cpu-x64.cc |
| 178 x64/debug-x64.cc | 179 x64/debug-x64.cc |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 snapshot_cc = Command('snapshot.cc', [], []) | 306 snapshot_cc = Command('snapshot.cc', [], []) |
| 306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 307 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 307 else: | 308 else: |
| 308 snapshot_obj = empty_snapshot_obj | 309 snapshot_obj = empty_snapshot_obj |
| 309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 310 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 310 return (library_objs, d8_objs, [mksnapshot]) | 311 return (library_objs, d8_objs, [mksnapshot]) |
| 311 | 312 |
| 312 | 313 |
| 313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 314 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 314 Return('library_objs d8_objs mksnapshot') | 315 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |