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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 x64/register-allocator-x64.cc | 161 x64/register-allocator-x64.cc |
162 x64/stub-cache-x64.cc | 162 x64/stub-cache-x64.cc |
163 x64/virtual-frame-x64.cc | 163 x64/virtual-frame-x64.cc |
164 """), | 164 """), |
165 'simulator:arm': ['arm/simulator-arm.cc'], | 165 'simulator:arm': ['arm/simulator-arm.cc'], |
166 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], | 166 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], |
167 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], | 167 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], |
168 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], | 168 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], |
169 'os:android': ['platform-linux.cc', 'platform-posix.cc'], | 169 'os:android': ['platform-linux.cc', 'platform-posix.cc'], |
170 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], | 170 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], |
| 171 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], |
171 'os:nullos': ['platform-nullos.cc'], | 172 'os:nullos': ['platform-nullos.cc'], |
172 'os:win32': ['platform-win32.cc'], | 173 'os:win32': ['platform-win32.cc'], |
173 'mode:release': [], | 174 'mode:release': [], |
174 'mode:debug': [ | 175 'mode:debug': [ |
175 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 176 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
176 ] | 177 ] |
177 } | 178 } |
178 | 179 |
179 | 180 |
180 D8_FILES = { | 181 D8_FILES = { |
181 'all': [ | 182 'all': [ |
182 'd8.cc', 'd8-debug.cc' | 183 'd8.cc', 'd8-debug.cc' |
183 ], | 184 ], |
184 'os:linux': [ | 185 'os:linux': [ |
185 'd8-posix.cc' | 186 'd8-posix.cc' |
186 ], | 187 ], |
187 'os:macos': [ | 188 'os:macos': [ |
188 'd8-posix.cc' | 189 'd8-posix.cc' |
189 ], | 190 ], |
190 'os:android': [ | 191 'os:android': [ |
191 'd8-posix.cc' | 192 'd8-posix.cc' |
192 ], | 193 ], |
193 'os:freebsd': [ | 194 'os:freebsd': [ |
194 'd8-posix.cc' | 195 'd8-posix.cc' |
195 ], | 196 ], |
196 'os:openbsd': [ | 197 'os:openbsd': [ |
197 'd8-posix.cc' | 198 'd8-posix.cc' |
198 ], | 199 ], |
| 200 'os:solaris': [ |
| 201 'd8-posix.cc' |
| 202 ], |
199 'os:win32': [ | 203 'os:win32': [ |
200 'd8-windows.cc' | 204 'd8-windows.cc' |
201 ], | 205 ], |
202 'os:nullos': [ | 206 'os:nullos': [ |
203 'd8-windows.cc' # Empty implementation at the moment. | 207 'd8-windows.cc' # Empty implementation at the moment. |
204 ], | 208 ], |
205 'console:readline': [ | 209 'console:readline': [ |
206 'd8-readline.cc' | 210 'd8-readline.cc' |
207 ] | 211 ] |
208 } | 212 } |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 snapshot_cc = Command('snapshot.cc', [], []) | 278 snapshot_cc = Command('snapshot.cc', [], []) |
275 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 279 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
276 else: | 280 else: |
277 snapshot_obj = empty_snapshot_obj | 281 snapshot_obj = empty_snapshot_obj |
278 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 282 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
279 return (library_objs, d8_objs, [mksnapshot]) | 283 return (library_objs, d8_objs, [mksnapshot]) |
280 | 284 |
281 | 285 |
282 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 286 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
283 Return('library_objs d8_objs mksnapshot') | 287 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |