Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: tools/gyp/v8.gyp

Issue 10824032: Enables V8 integration with the Intel VTune performance analysis tool. This allows the VTune profi… (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« src/serialize.cc ('K') | « src/x64/regexp-macro-assembler-x64.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
995 }], 1002 }],
996 ], 1003 ],
997 'dependencies': [ 1004 'dependencies': [
998 'v8' 1005 'v8'
999 ], 1006 ],
1000 }, 1007 },
1001 ], 1008 ],
1002 }], 1009 }],
1003 ], 1010 ],
1004 } 1011 }
OLDNEW
« src/serialize.cc ('K') | « src/x64/regexp-macro-assembler-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698