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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 755 'defines': [ | 755 'defines': [ |
| 756 'BUILDING_V8_SHARED', | 756 'BUILDING_V8_SHARED', |
| 757 'V8_SHARED', | 757 'V8_SHARED', |
| 758 ], | 758 ], |
| 759 }], | 759 }], |
| 760 ['v8_postmortem_support=="true"', { | 760 ['v8_postmortem_support=="true"', { |
| 761 'sources': [ | 761 'sources': [ |
| 762 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 762 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| 763 ] | 763 ] |
| 764 }], | 764 }], |
| 765 ['v8_enable_vtunejit==1', { | |
| 766 'sources': [ | |
| 767 '../../src/third_party/vtune/ittnotify_config.h', | |
| 768 '../../src/third_party/vtune/ittnotify_types.h', | |
| 769 '../../src/third_party/vtune/jitprofiling.cc', | |
| 770 '../../src/third_party/vtune/jitprofiling.h', | |
| 771 '../../src/third_party/vtune/v8-vtune.h', | |
| 772 '../../src/third_party/vtune/vtune-jit.cc', | |
| 773 '../../src/third_party/vtune/vtune-jit.h', | |
|
danno
2013/03/07 14:19:20
These belong in d8's list gyp file, not V8.
Jakob Kummerow
2013/03/07 14:46:30
In light of your other comments, I think you mean:
| |
| 774 ], | |
| 775 }], | |
| 765 ], | 776 ], |
| 766 }, | 777 }, |
| 767 { | 778 { |
| 768 'target_name': 'js2c', | 779 'target_name': 'js2c', |
| 769 'type': 'none', | 780 'type': 'none', |
| 770 'conditions': [ | 781 'conditions': [ |
| 771 ['want_separate_host_toolset==1', { | 782 ['want_separate_host_toolset==1', { |
| 772 'toolsets': ['host'], | 783 'toolsets': ['host'], |
| 773 }, { | 784 }, { |
| 774 'toolsets': ['target'], | 785 'toolsets': ['target'], |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1057 }], | 1068 }], |
| 1058 ], | 1069 ], |
| 1059 'dependencies': [ | 1070 'dependencies': [ |
| 1060 'v8' | 1071 'v8' |
| 1061 ], | 1072 ], |
| 1062 }, | 1073 }, |
| 1063 ], | 1074 ], |
| 1064 }], | 1075 }], |
| 1065 ], | 1076 ], |
| 1066 } | 1077 } |
| OLD | NEW |