| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 top.cc | 121 top.cc |
| 122 type-info.cc | 122 type-info.cc |
| 123 unicode.cc | 123 unicode.cc |
| 124 utils.cc | 124 utils.cc |
| 125 v8-counters.cc | 125 v8-counters.cc |
| 126 v8.cc | 126 v8.cc |
| 127 v8threads.cc | 127 v8threads.cc |
| 128 variables.cc | 128 variables.cc |
| 129 version.cc | 129 version.cc |
| 130 virtual-frame.cc | 130 virtual-frame.cc |
| 131 write-buffer.cc | 131 store-buffer.cc |
| 132 zone.cc | 132 zone.cc |
| 133 extensions/gc-extension.cc | 133 extensions/gc-extension.cc |
| 134 extensions/externalize-string-extension.cc | 134 extensions/externalize-string-extension.cc |
| 135 """), | 135 """), |
| 136 'arch:arm': Split(""" | 136 'arch:arm': Split(""" |
| 137 jump-target-light.cc | 137 jump-target-light.cc |
| 138 virtual-frame-light.cc | 138 virtual-frame-light.cc |
| 139 arm/builtins-arm.cc | 139 arm/builtins-arm.cc |
| 140 arm/code-stubs-arm.cc | 140 arm/code-stubs-arm.cc |
| 141 arm/codegen-arm.cc | 141 arm/codegen-arm.cc |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 snapshot_cc = 'snapshot.cc' | 337 snapshot_cc = 'snapshot.cc' |
| 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 338 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 339 else: | 339 else: |
| 340 snapshot_obj = empty_snapshot_obj | 340 snapshot_obj = empty_snapshot_obj |
| 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 341 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 342 return (library_objs, d8_objs, [mksnapshot]) | 342 return (library_objs, d8_objs, [mksnapshot]) |
| 343 | 343 |
| 344 | 344 |
| 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 345 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 346 Return('library_objs d8_objs mksnapshot') | 346 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |