OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], | 230 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
231 'os:android': ['platform-linux.cc', 'platform-posix.cc'], | 231 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
232 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], | 232 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
233 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], | 233 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], |
234 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'], | 234 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'], |
235 'os:nullos': ['platform-nullos.cc'], | 235 'os:nullos': ['platform-nullos.cc'], |
236 'os:win32': ['platform-win32.cc', 'win32-math.cc'], | 236 'os:win32': ['platform-win32.cc', 'win32-math.cc'], |
237 'mode:release': [], | 237 'mode:release': [], |
238 'mode:debug': [ | 238 'mode:debug': [ |
239 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 239 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
240 ] | 240 ], |
| 241 'vtunejit:on' : ['third_party/vtune/vtune-jit.cc'] |
241 } | 242 } |
242 | 243 |
243 | 244 |
244 PREPARSER_SOURCES = { | 245 PREPARSER_SOURCES = { |
245 'all': Split(""" | 246 'all': Split(""" |
246 allocation.cc | 247 allocation.cc |
247 bignum.cc | 248 bignum.cc |
248 bignum-dtoa.cc | 249 bignum-dtoa.cc |
249 cached-powers.cc | 250 cached-powers.cc |
250 conversions.cc | 251 conversions.cc |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 snapshot_cc = 'snapshot.cc' | 405 snapshot_cc = 'snapshot.cc' |
405 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 406 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
406 else: | 407 else: |
407 snapshot_obj = empty_snapshot_obj | 408 snapshot_obj = empty_snapshot_obj |
408 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 409 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
409 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 410 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
410 | 411 |
411 | 412 |
412 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 413 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
413 Return('library_objs d8_objs mksnapshot preparser_objs') | 414 Return('library_objs d8_objs mksnapshot preparser_objs') |
OLD | NEW |