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

Unified Diff: build/common.gypi

Issue 11574031: Intel VTune integration for V8/D8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 13696)
+++ build/common.gypi (working copy)
@@ -86,6 +86,9 @@
'v8_object_print%': 0,
+ # Enable support for Intel VTune. Supported on ia32/x64 only
+ 'v8_enable_vtunejit%': 0,
+
# Enable profiling support. Only required on Windows.
'v8_enable_prof%': 0,
@@ -137,6 +140,13 @@
['v8_interpreted_regexp==1', {
'defines': ['V8_INTERPRETED_REGEXP',],
}],
+ ['v8_enable_vtunejit==1 and OS=="win"', {
+ 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',],
+ }],
+ ['v8_enable_vtunejit==1 and OS!="win"', {
+ 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',],
+ 'libraries': ['-ldl',],
+ }],
['v8_target_arch=="arm"', {
'defines': [
'V8_TARGET_ARCH_ARM',
« no previous file with comments | « Makefile ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698