| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 utils.cc | 99 utils.cc |
| 100 v8-counters.cc | 100 v8-counters.cc |
| 101 v8.cc | 101 v8.cc |
| 102 v8threads.cc | 102 v8threads.cc |
| 103 variables.cc | 103 variables.cc |
| 104 version.cc | 104 version.cc |
| 105 virtual-frame.cc | 105 virtual-frame.cc |
| 106 zone.cc | 106 zone.cc |
| 107 """), | 107 """), |
| 108 'arch:arm': Split(""" | 108 'arch:arm': Split(""" |
| 109 arm/assembler-arm.cc | |
| 110 arm/builtins-arm.cc | 109 arm/builtins-arm.cc |
| 111 arm/codegen-arm.cc | 110 arm/codegen-arm.cc |
| 112 arm/constants-arm.cc | 111 arm/constants-arm.cc |
| 113 arm/cpu-arm.cc | 112 arm/cpu-arm.cc |
| 114 arm/debug-arm.cc | 113 arm/debug-arm.cc |
| 115 arm/disasm-arm.cc | 114 arm/disasm-arm.cc |
| 116 arm/fast-codegen-arm.cc | 115 arm/fast-codegen-arm.cc |
| 117 arm/frames-arm.cc | 116 arm/frames-arm.cc |
| 118 arm/ic-arm.cc | 117 arm/ic-arm.cc |
| 119 arm/jump-target-arm.cc | 118 arm/jump-target-arm.cc |
| 120 arm/macro-assembler-arm.cc | 119 arm/macro-assembler-arm.cc |
| 121 arm/regexp-macro-assembler-arm.cc | 120 arm/regexp-macro-assembler-arm.cc |
| 122 arm/register-allocator-arm.cc | 121 arm/register-allocator-arm.cc |
| 123 arm/stub-cache-arm.cc | 122 arm/stub-cache-arm.cc |
| 124 arm/virtual-frame-arm.cc | 123 arm/virtual-frame-arm.cc |
| 125 """), | 124 """), |
| 125 'armvariant:arm': Split(""" |
| 126 arm/assembler-arm.cc |
| 127 """), |
| 128 'armvariant:thumb2': Split(""" |
| 129 arm/assembler-thumb2.cc |
| 130 """), |
| 126 'arch:ia32': Split(""" | 131 'arch:ia32': Split(""" |
| 127 ia32/assembler-ia32.cc | 132 ia32/assembler-ia32.cc |
| 128 ia32/builtins-ia32.cc | 133 ia32/builtins-ia32.cc |
| 129 ia32/codegen-ia32.cc | 134 ia32/codegen-ia32.cc |
| 130 ia32/cpu-ia32.cc | 135 ia32/cpu-ia32.cc |
| 131 ia32/debug-ia32.cc | 136 ia32/debug-ia32.cc |
| 132 ia32/disasm-ia32.cc | 137 ia32/disasm-ia32.cc |
| 133 ia32/fast-codegen-ia32.cc | 138 ia32/fast-codegen-ia32.cc |
| 134 ia32/frames-ia32.cc | 139 ia32/frames-ia32.cc |
| 135 ia32/ic-ia32.cc | 140 ia32/ic-ia32.cc |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 snapshot_cc = Command('snapshot.cc', [], []) | 274 snapshot_cc = Command('snapshot.cc', [], []) |
| 270 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 275 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 271 else: | 276 else: |
| 272 snapshot_obj = empty_snapshot_obj | 277 snapshot_obj = empty_snapshot_obj |
| 273 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 278 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 274 return (library_objs, d8_objs, [mksnapshot]) | 279 return (library_objs, d8_objs, [mksnapshot]) |
| 275 | 280 |
| 276 | 281 |
| 277 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 282 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 278 Return('library_objs d8_objs mksnapshot') | 283 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |