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

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 8 years 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
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 13219)
+++ build/common.gypi (working copy)
@@ -74,6 +74,8 @@
'v8_object_print%': 0,
+ 'v8_enable_vtunejit%': 0,
Jakob Kummerow 2012/12/21 12:50:59 A short comment would be nice, e.g.: # Enable supp
+
# Enable profiling support. Only required on Windows.
'v8_enable_prof%': 0,
@@ -89,6 +91,7 @@
'v8_use_snapshot%': 'true',
'host_os%': '<(OS)',
'v8_use_liveobjectlist%': 'false',
+ #'werror%': '',
Jakob Kummerow 2012/12/21 12:50:59 what's this?
'werror%': '-Werror',
# With post mortem support enabled, metadata is embedded into libv8 that
@@ -123,6 +126,15 @@
['v8_interpreted_regexp==1', {
'defines': ['V8_INTERPRETED_REGEXP',],
}],
+ ['v8_enable_vtunejit==1', {
+ 'conditions': [
Jakob Kummerow 2012/12/21 12:50:59 nit: indentation
+ ['v8_target_arch=="ia32" or v8_target_arch=="x64"', {
Jakob Kummerow 2012/12/21 12:50:59 A 'conditions' section inside a 'conditions' secti
+ 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',],
+ 'libraries': ['-ldl',],
+#dw -ljitprofiling',],
Jakob Kummerow 2012/12/21 12:50:59 what's this?
+ }],
+ ],
+ }],
['v8_target_arch=="arm"', {
'defines': [
'V8_TARGET_ARCH_ARM',

Powered by Google App Engine
This is Rietveld 408576698