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

Side by Side Diff: content/content.gyp

Issue 11948003: Add content_renderer and content_gpu to the dependency list of content_browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ios Created 7 years, 11 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ], 81 ],
82 }, 82 },
83 { 83 {
84 'target_name': 'content_browser', 84 'target_name': 'content_browser',
85 'type': 'static_library', 85 'type': 'static_library',
86 'variables': { 'enable_wexit_time_destructors': 1, }, 86 'variables': { 'enable_wexit_time_destructors': 1, },
87 'includes': [ 87 'includes': [
88 'content_browser.gypi', 88 'content_browser.gypi',
89 ], 89 ],
90 'dependencies': [ 90 'dependencies': [
91 'content_common', 'content_resources.gyp:content_resources', 91 'content_common',
92 'content_resources.gyp:content_resources',
93 ],
94 'conditions': [
95 ['OS != "ios"', {
96 'dependencies': [
97 'content_gpu',
98 'content_renderer',
99 ],
100 }],
92 ], 101 ],
93 }, 102 },
94 { 103 {
95 'target_name': 'content_common', 104 'target_name': 'content_common',
96 'type': 'static_library', 105 'type': 'static_library',
97 'variables': { 'enable_wexit_time_destructors': 1, }, 106 'variables': { 'enable_wexit_time_destructors': 1, },
98 'includes': [ 107 'includes': [
99 'content_common.gypi', 108 'content_common.gypi',
100 ], 109 ],
101 'conditions': [ 110 'conditions': [
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'dependencies': [ 352 'dependencies': [
344 'surface_texture_jni_headers', 353 'surface_texture_jni_headers',
345 'surface_jni_headers', 354 'surface_jni_headers',
346 ], 355 ],
347 'includes': [ 'content_jni.gypi' ], 356 'includes': [ 'content_jni.gypi' ],
348 }, 357 },
349 ], 358 ],
350 }], # OS == "android" 359 }], # OS == "android"
351 ], 360 ],
352 } 361 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698