| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'mode:debug': [ | 225 'mode:debug': [ |
| 226 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 226 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
| 227 ] | 227 ] |
| 228 } | 228 } |
| 229 | 229 |
| 230 | 230 |
| 231 PREPARSER_SOURCES = { | 231 PREPARSER_SOURCES = { |
| 232 'all': Split(""" | 232 'all': Split(""" |
| 233 allocation.cc | 233 allocation.cc |
| 234 bignum.cc | 234 bignum.cc |
| 235 bignum-dtoa.cc | |
| 236 cached-powers.cc | 235 cached-powers.cc |
| 237 conversions.cc | 236 conversions.cc |
| 238 diy-fp.cc | |
| 239 dtoa.cc | |
| 240 fast-dtoa.cc | |
| 241 fixed-dtoa.cc | |
| 242 hashmap.cc | 237 hashmap.cc |
| 243 preparse-data.cc | 238 preparse-data.cc |
| 244 preparser.cc | 239 preparser.cc |
| 245 preparser-api.cc | 240 preparser-api.cc |
| 246 scanner-base.cc | 241 scanner-base.cc |
| 247 strtod.cc | 242 strtod.cc |
| 248 token.cc | 243 token.cc |
| 249 unicode.cc | 244 unicode.cc |
| 250 utils.cc | 245 utils.cc |
| 251 """) | 246 """) |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 snapshot_cc = 'snapshot.cc' | 377 snapshot_cc = 'snapshot.cc' |
| 383 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 378 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 384 else: | 379 else: |
| 385 snapshot_obj = empty_snapshot_obj | 380 snapshot_obj = empty_snapshot_obj |
| 386 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] |
| 387 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 382 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 388 | 383 |
| 389 | 384 |
| 390 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 385 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 391 Return('library_objs d8_objs mksnapshot preparser_objs') | 386 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |