| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 |
| 11 # with the distribution. | 11 # with the distribution. |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 factory.cc | 71 factory.cc |
| 72 flags.cc | 72 flags.cc |
| 73 frames.cc | 73 frames.cc |
| 74 full-codegen.cc | 74 full-codegen.cc |
| 75 func-name-inferrer.cc | 75 func-name-inferrer.cc |
| 76 gdb-jit.cc | 76 gdb-jit.cc |
| 77 global-handles.cc | 77 global-handles.cc |
| 78 fast-dtoa.cc | 78 fast-dtoa.cc |
| 79 fixed-dtoa.cc | 79 fixed-dtoa.cc |
| 80 handles.cc | 80 handles.cc |
| 81 hashmap.cc | |
| 82 heap-profiler.cc | 81 heap-profiler.cc |
| 83 heap.cc | 82 heap.cc |
| 84 hydrogen.cc | 83 hydrogen.cc |
| 85 hydrogen-instructions.cc | 84 hydrogen-instructions.cc |
| 86 ic.cc | 85 ic.cc |
| 87 incremental-marking.cc | 86 incremental-marking.cc |
| 88 inspector.cc | 87 inspector.cc |
| 89 interpreter-irregexp.cc | 88 interpreter-irregexp.cc |
| 90 isolate.cc | 89 isolate.cc |
| 91 jsregexp.cc | 90 jsregexp.cc |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 'all': Split(""" | 238 'all': Split(""" |
| 240 allocation.cc | 239 allocation.cc |
| 241 bignum.cc | 240 bignum.cc |
| 242 bignum-dtoa.cc | 241 bignum-dtoa.cc |
| 243 cached-powers.cc | 242 cached-powers.cc |
| 244 conversions.cc | 243 conversions.cc |
| 245 diy-fp.cc | 244 diy-fp.cc |
| 246 dtoa.cc | 245 dtoa.cc |
| 247 fast-dtoa.cc | 246 fast-dtoa.cc |
| 248 fixed-dtoa.cc | 247 fixed-dtoa.cc |
| 249 hashmap.cc | |
| 250 preparse-data.cc | 248 preparse-data.cc |
| 251 preparser.cc | 249 preparser.cc |
| 252 preparser-api.cc | 250 preparser-api.cc |
| 253 scanner.cc | 251 scanner.cc |
| 254 strtod.cc | 252 strtod.cc |
| 255 token.cc | 253 token.cc |
| 256 unicode.cc | 254 unicode.cc |
| 257 utils.cc | 255 utils.cc |
| 258 """), | 256 """), |
| 259 'os:win32': ['win32-math.cc'] | 257 'os:win32': ['win32-math.cc'] |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 snapshot_cc = 'snapshot.cc' | 397 snapshot_cc = 'snapshot.cc' |
| 400 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 398 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 401 else: | 399 else: |
| 402 snapshot_obj = empty_snapshot_obj | 400 snapshot_obj = empty_snapshot_obj |
| 403 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] | 401 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
snapshot_obj] |
| 404 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 402 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 405 | 403 |
| 406 | 404 |
| 407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 405 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 408 Return('library_objs d8_objs mksnapshot preparser_objs') | 406 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |