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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 LIBRARY_FILES = ''' | 242 LIBRARY_FILES = ''' |
243 runtime.js | 243 runtime.js |
244 v8natives.js | 244 v8natives.js |
245 array.js | 245 array.js |
246 string.js | 246 string.js |
247 uri.js | 247 uri.js |
248 math.js | 248 math.js |
249 messages.js | 249 messages.js |
250 apinatives.js | 250 apinatives.js |
251 debug-delay.js | 251 debug-delay.js |
| 252 liveedit-delay.js |
252 mirror-delay.js | 253 mirror-delay.js |
253 date-delay.js | 254 date-delay.js |
254 regexp-delay.js | 255 regexp-delay.js |
255 json-delay.js | 256 json-delay.js |
256 '''.split() | 257 '''.split() |
257 | 258 |
258 | 259 |
259 def Abort(message): | 260 def Abort(message): |
260 print message | 261 print message |
261 sys.exit(1) | 262 sys.exit(1) |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 snapshot_cc = Command('snapshot.cc', [], []) | 306 snapshot_cc = Command('snapshot.cc', [], []) |
306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 307 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
307 else: | 308 else: |
308 snapshot_obj = empty_snapshot_obj | 309 snapshot_obj = empty_snapshot_obj |
309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 310 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
310 return (library_objs, d8_objs, [mksnapshot]) | 311 return (library_objs, d8_objs, [mksnapshot]) |
311 | 312 |
312 | 313 |
313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 314 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
314 Return('library_objs d8_objs mksnapshot') | 315 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |