| OLD | NEW | 
|---|
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 165     mips/code-stubs-mips.cc | 165     mips/code-stubs-mips.cc | 
| 166     mips/codegen-mips.cc | 166     mips/codegen-mips.cc | 
| 167     mips/constants-mips.cc | 167     mips/constants-mips.cc | 
| 168     mips/cpu-mips.cc | 168     mips/cpu-mips.cc | 
| 169     mips/debug-mips.cc | 169     mips/debug-mips.cc | 
| 170     mips/deoptimizer-mips.cc | 170     mips/deoptimizer-mips.cc | 
| 171     mips/disasm-mips.cc | 171     mips/disasm-mips.cc | 
| 172     mips/frames-mips.cc | 172     mips/frames-mips.cc | 
| 173     mips/full-codegen-mips.cc | 173     mips/full-codegen-mips.cc | 
| 174     mips/ic-mips.cc | 174     mips/ic-mips.cc | 
|  | 175     mips/lithium-codegen-mips.cc | 
|  | 176     mips/lithium-gap-resolver-mips.cc | 
|  | 177     mips/lithium-mips.cc | 
| 175     mips/macro-assembler-mips.cc | 178     mips/macro-assembler-mips.cc | 
| 176     mips/regexp-macro-assembler-mips.cc | 179     mips/regexp-macro-assembler-mips.cc | 
| 177     mips/stub-cache-mips.cc | 180     mips/stub-cache-mips.cc | 
| 178     """), | 181     """), | 
| 179   'arch:ia32': Split(""" | 182   'arch:ia32': Split(""" | 
| 180     ia32/assembler-ia32.cc | 183     ia32/assembler-ia32.cc | 
| 181     ia32/builtins-ia32.cc | 184     ia32/builtins-ia32.cc | 
| 182     ia32/code-stubs-ia32.cc | 185     ia32/code-stubs-ia32.cc | 
| 183     ia32/codegen-ia32.cc | 186     ia32/codegen-ia32.cc | 
| 184     ia32/cpu-ia32.cc | 187     ia32/cpu-ia32.cc | 
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 396       snapshot_cc = 'snapshot.cc' | 399       snapshot_cc = 'snapshot.cc' | 
| 397     snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 400     snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 
| 398   else: | 401   else: | 
| 399     snapshot_obj = empty_snapshot_obj | 402     snapshot_obj = empty_snapshot_obj | 
| 400   library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
      snapshot_obj] | 403   library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj,
      snapshot_obj] | 
| 401   return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 404   return (library_objs, d8_objs, [mksnapshot], preparser_objs) | 
| 402 | 405 | 
| 403 | 406 | 
| 404 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() | 
| 405 Return('library_objs d8_objs mksnapshot preparser_objs') | 408 Return('library_objs d8_objs mksnapshot preparser_objs') | 
| OLD | NEW | 
|---|