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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Makefile ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'v8_enable_debugger_support%': 1, 79 'v8_enable_debugger_support%': 1,
80 80
81 'v8_enable_backtrace%': 0, 81 'v8_enable_backtrace%': 0,
82 82
83 'v8_enable_disassembler%': 0, 83 'v8_enable_disassembler%': 0,
84 84
85 'v8_enable_gdbjit%': 0, 85 'v8_enable_gdbjit%': 0,
86 86
87 'v8_object_print%': 0, 87 'v8_object_print%': 0,
88 88
89 # Enable support for Intel VTune. Supported on ia32/x64 only
90 'v8_enable_vtunejit%': 0,
91
89 # Enable profiling support. Only required on Windows. 92 # Enable profiling support. Only required on Windows.
90 'v8_enable_prof%': 0, 93 'v8_enable_prof%': 0,
91 94
92 'v8_enable_verify_heap%': 0, 95 'v8_enable_verify_heap%': 0,
93 96
94 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. 97 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing.
95 'v8_no_strict_aliasing%': 0, 98 'v8_no_strict_aliasing%': 0,
96 99
97 # Chrome needs this definition unconditionally. For standalone V8 builds, 100 # Chrome needs this definition unconditionally. For standalone V8 builds,
98 # it's handled in build/standalone.gypi. 101 # it's handled in build/standalone.gypi.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 }], 133 }],
131 ['v8_object_print==1', { 134 ['v8_object_print==1', {
132 'defines': ['OBJECT_PRINT',], 135 'defines': ['OBJECT_PRINT',],
133 }], 136 }],
134 ['v8_enable_verify_heap==1', { 137 ['v8_enable_verify_heap==1', {
135 'defines': ['VERIFY_HEAP',], 138 'defines': ['VERIFY_HEAP',],
136 }], 139 }],
137 ['v8_interpreted_regexp==1', { 140 ['v8_interpreted_regexp==1', {
138 'defines': ['V8_INTERPRETED_REGEXP',], 141 'defines': ['V8_INTERPRETED_REGEXP',],
139 }], 142 }],
143 ['v8_enable_vtunejit==1 and OS=="win"', {
144 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',],
145 }],
146 ['v8_enable_vtunejit==1 and OS!="win"', {
147 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',],
148 'libraries': ['-ldl',],
149 }],
140 ['v8_target_arch=="arm"', { 150 ['v8_target_arch=="arm"', {
141 'defines': [ 151 'defines': [
142 'V8_TARGET_ARCH_ARM', 152 'V8_TARGET_ARCH_ARM',
143 ], 153 ],
144 'conditions': [ 154 'conditions': [
145 ['armv7==1', { 155 ['armv7==1', {
146 'defines': [ 156 'defines': [
147 'CAN_USE_ARMV7_INSTRUCTIONS=1', 157 'CAN_USE_ARMV7_INSTRUCTIONS=1',
148 ], 158 ],
149 }], 159 }],
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 'OptimizeReferences': '2', 478 'OptimizeReferences': '2',
469 'EnableCOMDATFolding': '2', 479 'EnableCOMDATFolding': '2',
470 }, 480 },
471 }, 481 },
472 }], # OS=="win" 482 }], # OS=="win"
473 ], # conditions 483 ], # conditions
474 }, # Release 484 }, # Release
475 }, # configurations 485 }, # configurations
476 }, # target_defaults 486 }, # target_defaults
477 } 487 }
OLDNEW
« no previous file with comments | « Makefile ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698