| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 jsregexp.cc | 85 jsregexp.cc |
| 86 jump-target.cc | 86 jump-target.cc |
| 87 lithium-allocator.cc | 87 lithium-allocator.cc |
| 88 lithium.cc | 88 lithium.cc |
| 89 liveedit.cc | 89 liveedit.cc |
| 90 log-utils.cc | 90 log-utils.cc |
| 91 log.cc | 91 log.cc |
| 92 mark-compact.cc | 92 mark-compact.cc |
| 93 messages.cc | 93 messages.cc |
| 94 objects.cc | 94 objects.cc |
| 95 objects-printer.cc |
| 95 objects-visiting.cc | 96 objects-visiting.cc |
| 96 oprofile-agent.cc | 97 oprofile-agent.cc |
| 97 parser.cc | 98 parser.cc |
| 98 preparser.cc | 99 preparser.cc |
| 99 preparse-data.cc | 100 preparse-data.cc |
| 100 profile-generator.cc | 101 profile-generator.cc |
| 101 property.cc | 102 property.cc |
| 102 regexp-macro-assembler-irregexp.cc | 103 regexp-macro-assembler-irregexp.cc |
| 103 regexp-macro-assembler.cc | 104 regexp-macro-assembler.cc |
| 104 regexp-stack.cc | 105 regexp-stack.cc |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], | 227 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
| 227 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], | 228 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], |
| 228 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], | 229 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
| 229 'os:android': ['platform-linux.cc', 'platform-posix.cc'], | 230 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
| 230 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], | 231 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
| 231 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], | 232 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], |
| 232 'os:nullos': ['platform-nullos.cc'], | 233 'os:nullos': ['platform-nullos.cc'], |
| 233 'os:win32': ['platform-win32.cc'], | 234 'os:win32': ['platform-win32.cc'], |
| 234 'mode:release': [], | 235 'mode:release': [], |
| 235 'mode:debug': [ | 236 'mode:debug': [ |
| 236 'objects-debug.cc', 'objects-printer.cc', 'prettyprinter.cc', | 237 'objects-debug.cc', 'prettyprinter.cc', |
| 237 'regexp-macro-assembler-tracer.cc' | 238 'regexp-macro-assembler-tracer.cc' |
| 238 ], | 239 ] |
| 239 'objectprint:on': ['objects-printer.cc'] | |
| 240 } | 240 } |
| 241 | 241 |
| 242 | 242 |
| 243 D8_FILES = { | 243 D8_FILES = { |
| 244 'all': [ | 244 'all': [ |
| 245 'd8.cc', 'd8-debug.cc' | 245 'd8.cc', 'd8-debug.cc' |
| 246 ], | 246 ], |
| 247 'os:linux': [ | 247 'os:linux': [ |
| 248 'd8-posix.cc' | 248 'd8-posix.cc' |
| 249 ], | 249 ], |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 snapshot_cc = 'snapshot.cc' | 340 snapshot_cc = 'snapshot.cc' |
| 341 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 341 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 342 else: | 342 else: |
| 343 snapshot_obj = empty_snapshot_obj | 343 snapshot_obj = empty_snapshot_obj |
| 344 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 344 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 345 return (library_objs, d8_objs, [mksnapshot]) | 345 return (library_objs, d8_objs, [mksnapshot]) |
| 346 | 346 |
| 347 | 347 |
| 348 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 348 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 349 Return('library_objs d8_objs mksnapshot') | 349 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |