| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ia32/frames-ia32.cc | 133 ia32/frames-ia32.cc |
| 134 ia32/ic-ia32.cc | 134 ia32/ic-ia32.cc |
| 135 ia32/jump-target-ia32.cc | 135 ia32/jump-target-ia32.cc |
| 136 ia32/macro-assembler-ia32.cc | 136 ia32/macro-assembler-ia32.cc |
| 137 ia32/regexp-macro-assembler-ia32.cc | 137 ia32/regexp-macro-assembler-ia32.cc |
| 138 ia32/register-allocator-ia32.cc | 138 ia32/register-allocator-ia32.cc |
| 139 ia32/stub-cache-ia32.cc | 139 ia32/stub-cache-ia32.cc |
| 140 ia32/virtual-frame-ia32.cc | 140 ia32/virtual-frame-ia32.cc |
| 141 """), | 141 """), |
| 142 'arch:x64': Split(""" | 142 'arch:x64': Split(""" |
| 143 fast-codegen.cc |
| 143 x64/assembler-x64.cc | 144 x64/assembler-x64.cc |
| 144 x64/builtins-x64.cc | 145 x64/builtins-x64.cc |
| 145 x64/codegen-x64.cc | 146 x64/codegen-x64.cc |
| 146 x64/cpu-x64.cc | 147 x64/cpu-x64.cc |
| 147 x64/debug-x64.cc | 148 x64/debug-x64.cc |
| 148 x64/disasm-x64.cc | 149 x64/disasm-x64.cc |
| 150 x64/fast-codegen-x64.cc |
| 149 x64/frames-x64.cc | 151 x64/frames-x64.cc |
| 150 x64/ic-x64.cc | 152 x64/ic-x64.cc |
| 151 x64/jump-target-x64.cc | 153 x64/jump-target-x64.cc |
| 152 x64/macro-assembler-x64.cc | 154 x64/macro-assembler-x64.cc |
| 153 x64/regexp-macro-assembler-x64.cc | 155 x64/regexp-macro-assembler-x64.cc |
| 154 x64/register-allocator-x64.cc | 156 x64/register-allocator-x64.cc |
| 155 x64/stub-cache-x64.cc | 157 x64/stub-cache-x64.cc |
| 156 x64/virtual-frame-x64.cc | 158 x64/virtual-frame-x64.cc |
| 157 """), | 159 """), |
| 158 'simulator:arm': ['arm/simulator-arm.cc'], | 160 'simulator:arm': ['arm/simulator-arm.cc'], |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 266 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 265 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 267 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 266 else: | 268 else: |
| 267 snapshot_obj = empty_snapshot_obj | 269 snapshot_obj = empty_snapshot_obj |
| 268 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 270 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 269 return (library_objs, d8_objs, [mksnapshot]) | 271 return (library_objs, d8_objs, [mksnapshot]) |
| 270 | 272 |
| 271 | 273 |
| 272 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 274 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 273 Return('library_objs d8_objs mksnapshot') | 275 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |