| 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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 'defines': [ | 736 'defines': [ |
| 737 'BUILDING_V8_SHARED', | 737 'BUILDING_V8_SHARED', |
| 738 'V8_SHARED', | 738 'V8_SHARED', |
| 739 ], | 739 ], |
| 740 }], | 740 }], |
| 741 ['v8_postmortem_support=="true"', { | 741 ['v8_postmortem_support=="true"', { |
| 742 'sources': [ | 742 'sources': [ |
| 743 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 743 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| 744 ] | 744 ] |
| 745 }], | 745 }], |
| 746 ['v8_enable_vtunejit==1', { |
| 747 'sources' : [ |
| 748 '../../src/third_party/vtune/vtune-jit.cc', |
| 749 '../../src/third_party/vtune/vtune-jit.h', |
| 750 '../../src/third_party/vtune/jitprofiling.cc', |
| 751 ], |
| 752 }], |
| 746 ], | 753 ], |
| 747 }, | 754 }, |
| 748 { | 755 { |
| 749 'target_name': 'js2c', | 756 'target_name': 'js2c', |
| 750 'type': 'none', | 757 'type': 'none', |
| 751 'conditions': [ | 758 'conditions': [ |
| 752 ['want_separate_host_toolset==1', { | 759 ['want_separate_host_toolset==1', { |
| 753 'toolsets': ['host'], | 760 'toolsets': ['host'], |
| 754 }, { | 761 }, { |
| 755 'toolsets': ['target'], | 762 'toolsets': ['target'], |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 }], | 1002 }], |
| 996 ], | 1003 ], |
| 997 'dependencies': [ | 1004 'dependencies': [ |
| 998 'v8' | 1005 'v8' |
| 999 ], | 1006 ], |
| 1000 }, | 1007 }, |
| 1001 ], | 1008 ], |
| 1002 }], | 1009 }], |
| 1003 ], | 1010 ], |
| 1004 } | 1011 } |
| OLD | NEW |