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