| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 snapshot-common.cc | 91 snapshot-common.cc |
| 92 spaces.cc | 92 spaces.cc |
| 93 string-stream.cc | 93 string-stream.cc |
| 94 stub-cache.cc | 94 stub-cache.cc |
| 95 token.cc | 95 token.cc |
| 96 top.cc | 96 top.cc |
| 97 unicode.cc | 97 unicode.cc |
| 98 usage-analyzer.cc | 98 usage-analyzer.cc |
| 99 utils.cc | 99 utils.cc |
| 100 v8-counters.cc | 100 v8-counters.cc |
| 101 v8-global-context.cc |
| 101 v8.cc | 102 v8.cc |
| 102 v8threads.cc | 103 v8threads.cc |
| 103 variables.cc | 104 variables.cc |
| 104 version.cc | 105 version.cc |
| 105 virtual-frame.cc | 106 virtual-frame.cc |
| 106 zone.cc | 107 zone.cc |
| 107 """), | 108 """), |
| 108 'arch:arm': Split(""" | 109 'arch:arm': Split(""" |
| 109 arm/assembler-arm.cc | 110 arm/assembler-arm.cc |
| 110 arm/builtins-arm.cc | 111 arm/builtins-arm.cc |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 snapshot_cc = Command('snapshot.cc', [], []) | 270 snapshot_cc = Command('snapshot.cc', [], []) |
| 270 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 271 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 271 else: | 272 else: |
| 272 snapshot_obj = empty_snapshot_obj | 273 snapshot_obj = empty_snapshot_obj |
| 273 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 274 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 274 return (library_objs, d8_objs, [mksnapshot]) | 275 return (library_objs, d8_objs, [mksnapshot]) |
| 275 | 276 |
| 276 | 277 |
| 277 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 278 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 278 Return('library_objs d8_objs mksnapshot') | 279 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |