| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'os:win32': ['platform-win32.cc'], | 72 'os:win32': ['platform-win32.cc'], |
| 73 'mode:release': [], | 73 'mode:release': [], |
| 74 'mode:debug': [ | 74 'mode:debug': [ |
| 75 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 75 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
| 76 ] | 76 ] |
| 77 } | 77 } |
| 78 | 78 |
| 79 | 79 |
| 80 D8_FILES = { | 80 D8_FILES = { |
| 81 'all': [ | 81 'all': [ |
| 82 'd8.cc' | 82 'd8.cc', 'd8-debug.cc' |
| 83 ], | 83 ], |
| 84 'console:readline': [ | 84 'console:readline': [ |
| 85 'd8-readline.cc' | 85 'd8-readline.cc' |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 | 89 |
| 90 LIBRARY_FILES = ''' | 90 LIBRARY_FILES = ''' |
| 91 runtime.js | 91 runtime.js |
| 92 v8natives.js | 92 v8natives.js |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 164 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 165 else: | 165 else: |
| 166 snapshot_obj = empty_snapshot_obj | 166 snapshot_obj = empty_snapshot_obj |
| 167 | 167 |
| 168 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 168 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 169 return (library_objs, d8_objs) | 169 return (library_objs, d8_objs) |
| 170 | 170 |
| 171 | 171 |
| 172 (library_objs, d8_objs) = ConfigureObjectFiles() | 172 (library_objs, d8_objs) = ConfigureObjectFiles() |
| 173 Return('library_objs d8_objs') | 173 Return('library_objs d8_objs') |
| OLD | NEW |