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

Side by Side Diff: content/content.gyp

Issue 189713002: Declare dependency on blink_headers in targets that use blink headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
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_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
10 }, 10 },
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 { 98 {
99 'target_name': 'content_app_both', 99 'target_name': 'content_app_both',
100 'type': 'static_library', 100 'type': 'static_library',
101 'variables': { 'enable_wexit_time_destructors': 1, }, 101 'variables': { 'enable_wexit_time_destructors': 1, },
102 'includes': [ 102 'includes': [
103 'content_app.gypi', 103 'content_app.gypi',
104 ], 104 ],
105 'dependencies': [ 105 'dependencies': [
106 'content_common', 106 'content_common',
107 ], 107 ],
108 'export_dependent_settings': [
109 'content_common',
110 ],
108 }, 111 },
109 { 112 {
110 'target_name': 'content_browser', 113 'target_name': 'content_browser',
111 'type': 'static_library', 114 'type': 'static_library',
112 'variables': { 'enable_wexit_time_destructors': 1, }, 115 'variables': { 'enable_wexit_time_destructors': 1, },
113 'includes': [ 116 'includes': [
114 'content_browser.gypi', 117 'content_browser.gypi',
115 ], 118 ],
116 'dependencies': [ 119 'dependencies': [
117 'content_common', 120 'content_common',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 }, 295 },
293 { 296 {
294 'target_name': 'content_app_child', 297 'target_name': 'content_app_child',
295 'type': 'none', 298 'type': 'none',
296 'dependencies': ['content', 'content_child'], 299 'dependencies': ['content', 'content_child'],
297 }, 300 },
298 { 301 {
299 'target_name': 'content_app_both', 302 'target_name': 'content_app_both',
300 'type': 'none', 303 'type': 'none',
301 'dependencies': ['content'], 304 'dependencies': ['content'],
305 'export_dependent_settings': ['content'],
302 }, 306 },
303 { 307 {
304 'target_name': 'content_browser', 308 'target_name': 'content_browser',
305 'type': 'none', 309 'type': 'none',
306 'dependencies': ['content'], 310 'dependencies': ['content'],
311 'export_dependent_settings': ['content'],
307 }, 312 },
308 { 313 {
309 'target_name': 'content_common', 314 'target_name': 'content_common',
310 'type': 'none', 315 'type': 'none',
311 'dependencies': ['content', 'content_resources.gyp:content_resources'] , 316 'dependencies': ['content', 'content_resources.gyp:content_resources'] ,
312 # Disable c4267 warnings until we fix size_t to int truncations. 317 # Disable c4267 warnings until we fix size_t to int truncations.
313 'msvs_disabled_warnings': [ 4267, ], 318 'msvs_disabled_warnings': [ 4267, ],
319 'export_dependent_settings': ['content'],
314 }, 320 },
315 { 321 {
316 'target_name': 'content_child', 322 'target_name': 'content_child',
317 'type': 'none', 323 'type': 'none',
318 'dependencies': ['content'], 324 'dependencies': ['content'],
319 }, 325 },
320 { 326 {
321 'target_name': 'content_gpu', 327 'target_name': 'content_gpu',
322 'type': 'none', 328 'type': 'none',
323 'dependencies': ['content'], 329 'dependencies': ['content'],
(...skipping 12 matching lines...) Expand all
336 }, 342 },
337 { 343 {
338 'target_name': 'content_renderer', 344 'target_name': 'content_renderer',
339 'type': 'none', 345 'type': 'none',
340 'dependencies': ['content'], 346 'dependencies': ['content'],
341 }, 347 },
342 { 348 {
343 'target_name': 'content_utility', 349 'target_name': 'content_utility',
344 'type': 'none', 350 'type': 'none',
345 'dependencies': ['content'], 351 'dependencies': ['content'],
352 'export_dependent_settings': ['content'],
346 }, 353 },
347 { 354 {
348 'target_name': 'content_worker', 355 'target_name': 'content_worker',
349 'type': 'none', 356 'type': 'none',
350 'dependencies': ['content'], 357 'dependencies': ['content'],
351 }, 358 },
352 ], 359 ],
353 }], 360 }],
354 ['OS == "android"', { 361 ['OS == "android"', {
355 'targets': [ 362 'targets': [
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'dependencies': [ 503 'dependencies': [
497 'java_set_jni_headers', 504 'java_set_jni_headers',
498 'motionevent_jni_headers' 505 'motionevent_jni_headers'
499 ], 506 ],
500 'includes': [ 'content_jni.gypi' ], 507 'includes': [ 'content_jni.gypi' ],
501 }, 508 },
502 ], 509 ],
503 }], # OS == "android" 510 }], # OS == "android"
504 ], 511 ],
505 } 512 }
OLDNEW
« no previous file with comments | « components/nacl.gyp ('k') | content/content_browser.gypi » ('j') | ppapi/ppapi_proxy_nacl.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698