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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'mode:release': [], | 224 'mode:release': [], |
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 | |
235 cached-powers.cc | |
236 conversions.cc | |
237 hashmap.cc | 234 hashmap.cc |
238 preparse-data.cc | 235 preparse-data.cc |
239 preparser.cc | 236 preparser.cc |
240 preparser-api.cc | 237 preparser-api.cc |
241 scanner-base.cc | 238 scanner-base.cc |
242 strtod.cc | |
243 token.cc | 239 token.cc |
244 unicode.cc | 240 unicode.cc |
245 utils.cc | 241 utils.cc |
246 """) | 242 """) |
247 } | 243 } |
248 | 244 |
249 | 245 |
250 D8_FILES = { | 246 D8_FILES = { |
251 'all': [ | 247 'all': [ |
252 'd8.cc', 'd8-debug.cc' | 248 'd8.cc', 'd8-debug.cc' |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 snapshot_cc = 'snapshot.cc' | 373 snapshot_cc = 'snapshot.cc' |
378 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 374 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
379 else: | 375 else: |
380 snapshot_obj = empty_snapshot_obj | 376 snapshot_obj = empty_snapshot_obj |
381 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 377 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
382 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 378 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
383 | 379 |
384 | 380 |
385 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 381 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
386 Return('library_objs d8_objs mksnapshot preparser_objs') | 382 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |