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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'os:win32': ['platform-win32.cc'], | 66 'os:win32': ['platform-win32.cc'], |
67 'mode:release': [], | 67 'mode:release': [], |
68 'mode:debug': [ | 68 'mode:debug': [ |
69 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 69 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
73 | 73 |
74 D8_FILES = { | 74 D8_FILES = { |
75 'all': [ | 75 'all': [ |
76 'd8.cc' | 76 'd8.cc', 'd8-debug.cc' |
77 ], | 77 ], |
78 'console:readline': [ | 78 'console:readline': [ |
79 'd8-readline.cc' | 79 'd8-readline.cc' |
80 ] | 80 ] |
81 } | 81 } |
82 | 82 |
83 | 83 |
84 LIBRARY_FILES = ''' | 84 LIBRARY_FILES = ''' |
85 runtime.js | 85 runtime.js |
86 v8natives.js | 86 v8natives.js |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 158 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
159 else: | 159 else: |
160 snapshot_obj = empty_snapshot_obj | 160 snapshot_obj = empty_snapshot_obj |
161 | 161 |
162 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 162 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
163 return (library_objs, d8_objs) | 163 return (library_objs, d8_objs) |
164 | 164 |
165 | 165 |
166 (library_objs, d8_objs) = ConfigureObjectFiles() | 166 (library_objs, d8_objs) = ConfigureObjectFiles() |
167 Return('library_objs d8_objs') | 167 Return('library_objs d8_objs') |
OLD | NEW |