| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 array.js | 116 array.js |
| 117 string.js | 117 string.js |
| 118 uri.js | 118 uri.js |
| 119 math.js | 119 math.js |
| 120 messages.js | 120 messages.js |
| 121 apinatives.js | 121 apinatives.js |
| 122 debug-delay.js | 122 debug-delay.js |
| 123 mirror-delay.js | 123 mirror-delay.js |
| 124 date-delay.js | 124 date-delay.js |
| 125 regexp-delay.js | 125 regexp-delay.js |
| 126 json-delay.js |
| 126 '''.split() | 127 '''.split() |
| 127 | 128 |
| 128 | 129 |
| 129 def Abort(message): | 130 def Abort(message): |
| 130 print message | 131 print message |
| 131 sys.exit(1) | 132 sys.exit(1) |
| 132 | 133 |
| 133 | 134 |
| 134 def ConfigureObjectFiles(): | 135 def ConfigureObjectFiles(): |
| 135 env = Environment() | 136 env = Environment() |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 177 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 177 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 178 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 178 else: | 179 else: |
| 179 snapshot_obj = empty_snapshot_obj | 180 snapshot_obj = empty_snapshot_obj |
| 180 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 181 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 181 return (library_objs, d8_objs, [mksnapshot]) | 182 return (library_objs, d8_objs, [mksnapshot]) |
| 182 | 183 |
| 183 | 184 |
| 184 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 185 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
| 185 Return('library_objs d8_objs mksnapshot') | 186 Return('library_objs d8_objs mksnapshot') |
| OLD | NEW |