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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 'simulator:arm': ['arm/simulator-arm.cc'], | 215 'simulator:arm': ['arm/simulator-arm.cc'], |
216 'simulator:mips': ['mips/simulator-mips.cc'], | 216 'simulator:mips': ['mips/simulator-mips.cc'], |
217 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], | 217 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
218 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], | 218 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], |
219 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], | 219 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
220 'os:android': ['platform-linux.cc', 'platform-posix.cc'], | 220 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
221 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], | 221 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
222 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], | 222 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], |
223 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'], | 223 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'], |
224 'os:nullos': ['platform-nullos.cc'], | 224 'os:nullos': ['platform-nullos.cc'], |
225 'os:win32': ['platform-win32.cc'], | 225 'os:win32': ['platform-win32.cc', 'win32-math.cc'], |
226 'mode:release': [], | 226 'mode:release': [], |
227 'mode:debug': [ | 227 'mode:debug': [ |
228 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 228 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
229 ] | 229 ] |
230 } | 230 } |
231 | 231 |
232 | 232 |
233 PREPARSER_SOURCES = { | 233 PREPARSER_SOURCES = { |
234 'all': Split(""" | 234 'all': Split(""" |
235 allocation.cc | 235 allocation.cc |
| 236 bignum.cc |
| 237 bignum-dtoa.cc |
| 238 cached-powers.cc |
| 239 conversions.cc |
| 240 diy-fp.cc |
| 241 dtoa.cc |
| 242 fast-dtoa.cc |
| 243 fixed-dtoa.cc |
236 hashmap.cc | 244 hashmap.cc |
237 preparse-data.cc | 245 preparse-data.cc |
238 preparser.cc | 246 preparser.cc |
239 preparser-api.cc | 247 preparser-api.cc |
240 scanner-base.cc | 248 scanner-base.cc |
| 249 strtod.cc |
241 token.cc | 250 token.cc |
242 unicode.cc | 251 unicode.cc |
243 utils.cc | 252 utils.cc |
244 """) | 253 """), |
| 254 'os:win32': ['win32-math.cc'] |
245 } | 255 } |
246 | 256 |
247 | 257 |
248 D8_LIGHT_FILES = { | 258 D8_LIGHT_FILES = { |
249 'all': [ | 259 'all': [ |
250 'd8.cc' | 260 'd8.cc' |
251 ] | 261 ] |
252 } | 262 } |
253 | 263 |
254 | 264 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 snapshot_cc = 'snapshot.cc' | 394 snapshot_cc = 'snapshot.cc' |
385 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 395 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
386 else: | 396 else: |
387 snapshot_obj = empty_snapshot_obj | 397 snapshot_obj = empty_snapshot_obj |
388 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 398 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
389 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 399 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
390 | 400 |
391 | 401 |
392 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 402 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
393 Return('library_objs d8_objs mksnapshot preparser_objs') | 403 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |