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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
245 | 245 |
246 LIBRARY_FILES = ''' | 246 LIBRARY_FILES = ''' |
247 runtime.js | 247 runtime.js |
248 v8natives.js | 248 v8natives.js |
249 array.js | 249 array.js |
250 string.js | 250 string.js |
251 uri.js | 251 uri.js |
252 math.js | 252 math.js |
253 messages.js | 253 messages.js |
254 apinatives.js | 254 apinatives.js |
255 debug-delay.js | 255 date.js |
256 liveedit-delay.js | 256 regexp.js |
257 mirror-delay.js | 257 json.js |
258 date-delay.js | 258 liveedit-debugger.js |
259 regexp-delay.js | 259 mirror-debugger.js |
260 json-delay.js | 260 debug-debugger.js |
Erik Corry
2010/03/23 12:01:50
We will break the other builds unless we do this o
| |
261 '''.split() | 261 '''.split() |
262 | 262 |
263 | 263 |
264 def Abort(message): | 264 def Abort(message): |
265 print message | 265 print message |
266 sys.exit(1) | 266 sys.exit(1) |
267 | 267 |
268 | 268 |
269 def ConfigureObjectFiles(): | 269 def ConfigureObjectFiles(): |
270 env = Environment() | 270 env = Environment() |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 snapshot_cc = Command('snapshot.cc', [], []) | 310 snapshot_cc = Command('snapshot.cc', [], []) |
311 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 311 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
312 else: | 312 else: |
313 snapshot_obj = empty_snapshot_obj | 313 snapshot_obj = empty_snapshot_obj |
314 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 314 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
315 return (library_objs, d8_objs, [mksnapshot]) | 315 return (library_objs, d8_objs, [mksnapshot]) |
316 | 316 |
317 | 317 |
318 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 318 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
319 Return('library_objs d8_objs mksnapshot') | 319 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |