| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 string-search.cc | 119 string-search.cc |
| 120 string-stream.cc | 120 string-stream.cc |
| 121 strtod.cc | 121 strtod.cc |
| 122 stub-cache.cc | 122 stub-cache.cc |
| 123 token.cc | 123 token.cc |
| 124 type-info.cc | 124 type-info.cc |
| 125 unicode.cc | 125 unicode.cc |
| 126 utils.cc | 126 utils.cc |
| 127 v8-counters.cc | 127 v8-counters.cc |
| 128 v8.cc | 128 v8.cc |
| 129 v8conversions.cc |
| 129 v8threads.cc | 130 v8threads.cc |
| 131 v8utils.cc |
| 130 variables.cc | 132 variables.cc |
| 131 version.cc | 133 version.cc |
| 132 zone.cc | 134 zone.cc |
| 133 extensions/gc-extension.cc | 135 extensions/gc-extension.cc |
| 134 extensions/externalize-string-extension.cc | 136 extensions/externalize-string-extension.cc |
| 135 """), | 137 """), |
| 136 'arch:arm': Split(""" | 138 'arch:arm': Split(""" |
| 137 arm/builtins-arm.cc | 139 arm/builtins-arm.cc |
| 138 arm/code-stubs-arm.cc | 140 arm/code-stubs-arm.cc |
| 139 arm/codegen-arm.cc | 141 arm/codegen-arm.cc |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 'mode:release': [], | 224 'mode:release': [], |
| 223 'mode:debug': [ | 225 'mode:debug': [ |
| 224 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 226 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
| 225 ] | 227 ] |
| 226 } | 228 } |
| 227 | 229 |
| 228 | 230 |
| 229 PREPARSER_SOURCES = { | 231 PREPARSER_SOURCES = { |
| 230 'all': Split(""" | 232 'all': Split(""" |
| 231 allocation.cc | 233 allocation.cc |
| 234 bignum.cc |
| 235 cached-powers.cc |
| 236 conversions.cc |
| 232 hashmap.cc | 237 hashmap.cc |
| 233 preparse-data.cc | 238 preparse-data.cc |
| 234 preparser.cc | 239 preparser.cc |
| 235 preparser-api.cc | 240 preparser-api.cc |
| 236 scanner-base.cc | 241 scanner-base.cc |
| 242 strtod.cc |
| 237 token.cc | 243 token.cc |
| 238 unicode.cc | 244 unicode.cc |
| 245 utils.cc |
| 239 """) | 246 """) |
| 240 } | 247 } |
| 241 | 248 |
| 242 | 249 |
| 243 D8_FILES = { | 250 D8_FILES = { |
| 244 'all': [ | 251 'all': [ |
| 245 'd8.cc', 'd8-debug.cc' | 252 'd8.cc', 'd8-debug.cc' |
| 246 ], | 253 ], |
| 247 'os:linux': [ | 254 'os:linux': [ |
| 248 'd8-posix.cc' | 255 'd8-posix.cc' |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 snapshot_cc = 'snapshot.cc' | 377 snapshot_cc = 'snapshot.cc' |
| 371 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 378 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 372 else: | 379 else: |
| 373 snapshot_obj = empty_snapshot_obj | 380 snapshot_obj = empty_snapshot_obj |
| 374 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 381 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
| 375 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 382 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 376 | 383 |
| 377 | 384 |
| 378 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 385 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 379 Return('library_objs d8_objs mksnapshot preparser_objs') | 386 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |