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 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
975 'interpreter/bytecode-dead-code-optimizer.cc', | 975 'interpreter/bytecode-dead-code-optimizer.cc', |
976 'interpreter/bytecode-dead-code-optimizer.h', | 976 'interpreter/bytecode-dead-code-optimizer.h', |
977 'interpreter/bytecode-decoder.cc', | 977 'interpreter/bytecode-decoder.cc', |
978 'interpreter/bytecode-decoder.h', | 978 'interpreter/bytecode-decoder.h', |
979 'interpreter/bytecode-flags.cc', | 979 'interpreter/bytecode-flags.cc', |
980 'interpreter/bytecode-flags.h', | 980 'interpreter/bytecode-flags.h', |
981 'interpreter/bytecode-generator.cc', | 981 'interpreter/bytecode-generator.cc', |
982 'interpreter/bytecode-generator.h', | 982 'interpreter/bytecode-generator.h', |
983 'interpreter/bytecode-label.cc', | 983 'interpreter/bytecode-label.cc', |
984 'interpreter/bytecode-label.h', | 984 'interpreter/bytecode-label.h', |
985 'interpreter/bytecode-operands.cc', | |
986 'interpreter/bytecode-operands.h', | |
987 'interpreter/bytecode-peephole-optimizer.cc', | 985 'interpreter/bytecode-peephole-optimizer.cc', |
988 'interpreter/bytecode-peephole-optimizer.h', | 986 'interpreter/bytecode-peephole-optimizer.h', |
989 'interpreter/bytecode-peephole-table.h', | 987 'interpreter/bytecode-peephole-table.h', |
990 'interpreter/bytecode-pipeline.cc', | 988 'interpreter/bytecode-pipeline.cc', |
991 'interpreter/bytecode-pipeline.h', | 989 'interpreter/bytecode-pipeline.h', |
992 'interpreter/bytecode-register.cc', | 990 'interpreter/bytecode-register.cc', |
993 'interpreter/bytecode-register.h', | 991 'interpreter/bytecode-register.h', |
994 'interpreter/bytecode-register-allocator.cc', | 992 'interpreter/bytecode-register-allocator.cc', |
995 'interpreter/bytecode-register-allocator.h', | 993 'interpreter/bytecode-register-allocator.h', |
996 'interpreter/bytecode-register-optimizer.cc', | 994 'interpreter/bytecode-register-optimizer.cc', |
(...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2434 ], | 2432 ], |
2435 }, | 2433 }, |
2436 { | 2434 { |
2437 'target_name': 'mkpeephole', | 2435 'target_name': 'mkpeephole', |
2438 'type': 'executable', | 2436 'type': 'executable', |
2439 'dependencies': [ 'v8_libbase' ], | 2437 'dependencies': [ 'v8_libbase' ], |
2440 'include_dirs+': [ | 2438 'include_dirs+': [ |
2441 '..', | 2439 '..', |
2442 ], | 2440 ], |
2443 'sources': [ | 2441 'sources': [ |
2444 'interpreter/bytecode-operands.h', | |
2445 'interpreter/bytecode-operands.cc', | |
2446 'interpreter/bytecode-peephole-table.h', | 2442 'interpreter/bytecode-peephole-table.h', |
2447 'interpreter/bytecode-traits.h', | |
2448 'interpreter/bytecodes.h', | 2443 'interpreter/bytecodes.h', |
2449 'interpreter/bytecodes.cc', | 2444 'interpreter/bytecodes.cc', |
2450 'interpreter/mkpeephole.cc' | 2445 'interpreter/mkpeephole.cc' |
2451 ], | 2446 ], |
2452 'conditions': [ | 2447 'conditions': [ |
2453 ['want_separate_host_toolset_mkpeephole==1', { | 2448 ['want_separate_host_toolset_mkpeephole==1', { |
2454 'toolsets': ['host'], | 2449 'toolsets': ['host'], |
2455 }, { | 2450 }, { |
2456 'toolsets': ['target'], | 2451 'toolsets': ['target'], |
2457 }], | 2452 }], |
2458 ], | 2453 ], |
2459 }, | 2454 }, |
2460 ], | 2455 ], |
2461 } | 2456 } |
OLD | NEW |