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