| OLD | NEW |
| 1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], | 223 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], |
| 224 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], | 224 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
| 225 'os:android': ['platform-linux.cc', 'platform-posix.cc'], | 225 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
| 226 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], | 226 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
| 227 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], | 227 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], |
| 228 'os:nullos': ['platform-nullos.cc'], | 228 'os:nullos': ['platform-nullos.cc'], |
| 229 'os:win32': ['platform-win32.cc'], | 229 'os:win32': ['platform-win32.cc'], |
| 230 'mode:release': [], | 230 'mode:release': [], |
| 231 'mode:debug': [ | 231 'mode:debug': [ |
| 232 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 232 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
| 233 ] | 233 ], |
| 234 'objectprint:on': ['objects-debug.cc'] |
| 234 } | 235 } |
| 235 | 236 |
| 236 | 237 |
| 237 D8_FILES = { | 238 D8_FILES = { |
| 238 'all': [ | 239 'all': [ |
| 239 'd8.cc', 'd8-debug.cc' | 240 'd8.cc', 'd8-debug.cc' |
| 240 ], | 241 ], |
| 241 'os:linux': [ | 242 'os:linux': [ |
| 242 'd8-posix.cc' | 243 'd8-posix.cc' |
| 243 ], | 244 ], |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 snapshot_cc = 'snapshot.cc' | 335 snapshot_cc = 'snapshot.cc' |
| 335 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 336 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 336 else: | 337 else: |
| 337 snapshot_obj = empty_snapshot_obj | 338 snapshot_obj = empty_snapshot_obj |
| 338 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 339 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 339 return (library_objs, d8_objs, [mksnapshot]) | 340 return (library_objs, d8_objs, [mksnapshot]) |
| 340 | 341 |
| 341 | 342 |
| 342 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 343 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 343 Return('library_objs d8_objs mksnapshot') | 344 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |