Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2012 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 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 bignum-dtoa.cc | 47 bignum-dtoa.cc |
| 48 bootstrapper.cc | 48 bootstrapper.cc |
| 49 builtins.cc | 49 builtins.cc |
| 50 cached-powers.cc | 50 cached-powers.cc |
| 51 checks.cc | 51 checks.cc |
| 52 circular-queue.cc | 52 circular-queue.cc |
| 53 code-stubs.cc | 53 code-stubs.cc |
| 54 codegen.cc | 54 codegen.cc |
| 55 compilation-cache.cc | 55 compilation-cache.cc |
| 56 compiler.cc | 56 compiler.cc |
| 57 crankshaft-thread.cc | |
|
danno
2012/05/22 10:32:19
Don't refer to crankshaft if filenames/variables.
| |
| 57 contexts.cc | 58 contexts.cc |
| 58 conversions.cc | 59 conversions.cc |
| 59 counters.cc | 60 counters.cc |
| 60 cpu-profiler.cc | 61 cpu-profiler.cc |
| 61 data-flow.cc | 62 data-flow.cc |
| 62 date.cc | 63 date.cc |
| 63 dateparser.cc | 64 dateparser.cc |
| 64 debug-agent.cc | 65 debug-agent.cc |
| 65 debug.cc | 66 debug.cc |
| 66 deoptimizer.cc | 67 deoptimizer.cc |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 400 snapshot_cc = 'snapshot.cc' | 401 snapshot_cc = 'snapshot.cc' |
| 401 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 402 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
| 402 else: | 403 else: |
| 403 snapshot_obj = empty_snapshot_obj | 404 snapshot_obj = empty_snapshot_obj |
| 404 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] | 405 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] |
| 405 return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 406 return (library_objs, d8_objs, [mksnapshot], preparser_objs) |
| 406 | 407 |
| 407 | 408 |
| 408 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 409 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() |
| 409 Return('library_objs d8_objs mksnapshot preparser_objs') | 410 Return('library_objs d8_objs mksnapshot preparser_objs') |
| OLD | NEW |