OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 mips/frames-mips.cc | 178 mips/frames-mips.cc |
179 mips/full-codegen-mips.cc | 179 mips/full-codegen-mips.cc |
180 mips/ic-mips.cc | 180 mips/ic-mips.cc |
181 mips/lithium-codegen-mips.cc | 181 mips/lithium-codegen-mips.cc |
182 mips/lithium-gap-resolver-mips.cc | 182 mips/lithium-gap-resolver-mips.cc |
183 mips/lithium-mips.cc | 183 mips/lithium-mips.cc |
184 mips/macro-assembler-mips.cc | 184 mips/macro-assembler-mips.cc |
185 mips/regexp-macro-assembler-mips.cc | 185 mips/regexp-macro-assembler-mips.cc |
186 mips/stub-cache-mips.cc | 186 mips/stub-cache-mips.cc |
187 """), | 187 """), |
| 188 'arch:sh4': Split(""" |
| 189 sh4/assembler-sh4.cc |
| 190 sh4/builtins-sh4.cc |
| 191 sh4/code-stubs-sh4.cc |
| 192 sh4/codegen-sh4.cc |
| 193 sh4/constants-sh4.cc |
| 194 sh4/cpu-sh4.cc |
| 195 sh4/debug-sh4.cc |
| 196 sh4/deoptimizer-sh4.cc |
| 197 sh4/disasm-sh4.cc |
| 198 sh4/frames-sh4.cc |
| 199 sh4/full-codegen-sh4.cc |
| 200 sh4/ic-sh4.cc |
| 201 sh4/lithium-codegen-sh4.cc |
| 202 sh4/lithium-gap-resolver-sh4.cc |
| 203 sh4/lithium-sh4.cc |
| 204 sh4/macro-assembler-sh4.cc |
| 205 sh4/regexp-macro-assembler-sh4.cc |
| 206 sh4/opcodes-sh4.cc |
| 207 sh4/stub-cache-sh4.cc |
| 208 """), |
188 'arch:ia32': Split(""" | 209 'arch:ia32': Split(""" |
189 ia32/assembler-ia32.cc | 210 ia32/assembler-ia32.cc |
190 ia32/builtins-ia32.cc | 211 ia32/builtins-ia32.cc |
191 ia32/code-stubs-ia32.cc | 212 ia32/code-stubs-ia32.cc |
192 ia32/codegen-ia32.cc | 213 ia32/codegen-ia32.cc |
193 ia32/cpu-ia32.cc | 214 ia32/cpu-ia32.cc |
194 ia32/debug-ia32.cc | 215 ia32/debug-ia32.cc |
195 ia32/deoptimizer-ia32.cc | 216 ia32/deoptimizer-ia32.cc |
196 ia32/disasm-ia32.cc | 217 ia32/disasm-ia32.cc |
197 ia32/frames-ia32.cc | 218 ia32/frames-ia32.cc |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 snapshot_cc = 'snapshot.cc' | 425 snapshot_cc = 'snapshot.cc' |
405 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 426 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
406 else: | 427 else: |
407 snapshot_obj = empty_snapshot_obj | 428 snapshot_obj = empty_snapshot_obj |
408 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 429 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
409 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 430 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
410 | 431 |
411 | 432 |
412 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 433 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
413 Return('library_objs d8_objs mksnapshot preparser_objs') | 434 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |