| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], | 222 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
| 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', 'objects-printer.cc', 'prettyprinter.cc', |
| 233 'regexp-macro-assembler-tracer.cc' |
| 233 ], | 234 ], |
| 234 'objectprint:on': ['objects-debug.cc'] | 235 'objectprint:on': ['objects-printer.cc'] |
| 235 } | 236 } |
| 236 | 237 |
| 237 | 238 |
| 238 D8_FILES = { | 239 D8_FILES = { |
| 239 'all': [ | 240 'all': [ |
| 240 'd8.cc', 'd8-debug.cc' | 241 'd8.cc', 'd8-debug.cc' |
| 241 ], | 242 ], |
| 242 'os:linux': [ | 243 'os:linux': [ |
| 243 'd8-posix.cc' | 244 'd8-posix.cc' |
| 244 ], | 245 ], |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 snapshot_cc = 'snapshot.cc' | 336 snapshot_cc = 'snapshot.cc' |
| 336 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 337 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 337 else: | 338 else: |
| 338 snapshot_obj = empty_snapshot_obj | 339 snapshot_obj = empty_snapshot_obj |
| 339 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 340 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 340 return (library_objs, d8_objs, [mksnapshot]) | 341 return (library_objs, d8_objs, [mksnapshot]) |
| 341 | 342 |
| 342 | 343 |
| 343 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 344 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 344 Return('library_objs d8_objs mksnapshot') | 345 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |