| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 top.cc | 107 top.cc |
| 108 type-info.cc | 108 type-info.cc |
| 109 unicode.cc | 109 unicode.cc |
| 110 utils.cc | 110 utils.cc |
| 111 v8-counters.cc | 111 v8-counters.cc |
| 112 v8.cc | 112 v8.cc |
| 113 v8threads.cc | 113 v8threads.cc |
| 114 variables.cc | 114 variables.cc |
| 115 version.cc | 115 version.cc |
| 116 virtual-frame.cc | 116 virtual-frame.cc |
| 117 vm-state.cc | |
| 118 zone.cc | 117 zone.cc |
| 119 """), | 118 """), |
| 120 'arch:arm': Split(""" | 119 'arch:arm': Split(""" |
| 121 fast-codegen.cc | 120 fast-codegen.cc |
| 122 jump-target-light.cc | 121 jump-target-light.cc |
| 123 virtual-frame-light.cc | 122 virtual-frame-light.cc |
| 124 arm/builtins-arm.cc | 123 arm/builtins-arm.cc |
| 125 arm/codegen-arm.cc | 124 arm/codegen-arm.cc |
| 126 arm/constants-arm.cc | 125 arm/constants-arm.cc |
| 127 arm/cpu-arm.cc | 126 arm/cpu-arm.cc |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 snapshot_cc = 'snapshot.cc' | 321 snapshot_cc = 'snapshot.cc' |
| 323 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 322 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 324 else: | 323 else: |
| 325 snapshot_obj = empty_snapshot_obj | 324 snapshot_obj = empty_snapshot_obj |
| 326 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 325 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 327 return (library_objs, d8_objs, [mksnapshot]) | 326 return (library_objs, d8_objs, [mksnapshot]) |
| 328 | 327 |
| 329 | 328 |
| 330 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 329 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 331 Return('library_objs d8_objs mksnapshot') | 330 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |