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

Side by Side Diff: content/content.gyp

Issue 14630005: This patch is to enable the vtune profiling tool support in chrome. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 7 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtunejit_for_v8%': 0, # enable the vtune support for V8 en gine.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 10 'conditions': [
10 ['inside_chromium_build==0', { 11 ['inside_chromium_build==0', {
11 'webkit_src_dir': '../../../..', 12 'webkit_src_dir': '../../../..',
12 },{ 13 },{
13 'webkit_src_dir': '../third_party/WebKit', 14 'webkit_src_dir': '../third_party/WebKit',
14 }], 15 }],
15 ], 16 ],
16 }, 17 },
17 'target_defaults': { 18 'target_defaults': {
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'target_name': 'content_renderer', 165 'target_name': 'content_renderer',
165 'type': 'static_library', 166 'type': 'static_library',
166 'variables': { 'enable_wexit_time_destructors': 1, }, 167 'variables': { 'enable_wexit_time_destructors': 1, },
167 'includes': [ 168 'includes': [
168 'content_renderer.gypi', 169 'content_renderer.gypi',
169 ], 170 ],
170 'dependencies': [ 171 'dependencies': [
171 'content_common', 172 'content_common',
172 'content_resources.gyp:content_resources', 173 'content_resources.gyp:content_resources',
173 ], 174 ],
175 'conditions': [
176 ['chromium_enable_vtunejit_for_v8==1', {
177 'dependencies': [
178 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
179 ],
180 }],
181 ],
174 }, 182 },
175 { 183 {
176 'target_name': 'content_utility', 184 'target_name': 'content_utility',
177 'type': 'static_library', 185 'type': 'static_library',
178 'variables': { 'enable_wexit_time_destructors': 1, }, 186 'variables': { 'enable_wexit_time_destructors': 1, },
179 'includes': [ 187 'includes': [
180 'content_utility.gypi', 188 'content_utility.gypi',
181 ], 189 ],
182 'dependencies': [ 190 'dependencies': [
183 'content_common', 191 'content_common',
(...skipping 22 matching lines...) Expand all
206 'variables': { 'enable_wexit_time_destructors': 1, }, 214 'variables': { 'enable_wexit_time_destructors': 1, },
207 'dependencies': [ 215 'dependencies': [
208 'content_resources.gyp:content_resources', 216 'content_resources.gyp:content_resources',
209 ], 217 ],
210 'conditions': [ 218 'conditions': [
211 ['OS=="mac"', { 219 ['OS=="mac"', {
212 'dependencies': [ 220 'dependencies': [
213 '<(DEPTH)/third_party/mach_override/mach_override.gyp:mach_overr ide', 221 '<(DEPTH)/third_party/mach_override/mach_override.gyp:mach_overr ide',
214 ], 222 ],
215 }], 223 }],
224 ['chromium_enable_vtunejit_for_v8==1', {
225 'dependencies': [
226 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
227 ],
228 }],
216 ], 229 ],
217 'includes': [ 230 'includes': [
218 'content_app.gypi', 231 'content_app.gypi',
219 'content_browser.gypi', 232 'content_browser.gypi',
220 'content_common.gypi', 233 'content_common.gypi',
221 'content_gpu.gypi', 234 'content_gpu.gypi',
222 'content_plugin.gypi', 235 'content_plugin.gypi',
223 'content_ppapi_plugin.gypi', 236 'content_ppapi_plugin.gypi',
224 'content_renderer.gypi', 237 'content_renderer.gypi',
225 'content_utility.gypi', 238 'content_utility.gypi',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'include_dirs': [ 404 'include_dirs': [
392 '<(SHARED_INTERMEDIATE_DIR)/content', 405 '<(SHARED_INTERMEDIATE_DIR)/content',
393 ], 406 ],
394 }, 407 },
395 'includes': [ 'content_jni.gypi' ], 408 'includes': [ 'content_jni.gypi' ],
396 }, 409 },
397 ], 410 ],
398 }], # OS == "android" 411 }], # OS == "android"
399 ], 412 ],
400 } 413 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698