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

Side by Side Diff: content/content.gyp

Issue 19502003: Cut some more dependencies from browser to child for multiple_dll mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 5 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'type': 'static_library', 105 'type': 'static_library',
106 'variables': { 'enable_wexit_time_destructors': 1, }, 106 'variables': { 'enable_wexit_time_destructors': 1, },
107 'includes': [ 107 'includes': [
108 'content_browser.gypi', 108 'content_browser.gypi',
109 ], 109 ],
110 'dependencies': [ 110 'dependencies': [
111 'content_common', 111 'content_common',
112 'content_resources.gyp:content_resources', 112 'content_resources.gyp:content_resources',
113 ], 113 ],
114 'conditions': [ 114 'conditions': [
115 ['OS != "ios"', { 115 ['OS != "ios" and chrome_multiple_dll != 1', {
116 'dependencies': [ 116 'dependencies': [
117 'content_gpu', 117 'content_gpu',
118 'content_utility', 118 'content_utility',
119 ], 119 ],
120 }], 120 }],
121 ['java_bridge==1', { 121 ['java_bridge==1', {
122 'dependencies': [ 122 'dependencies': [
123 'content_child', 123 'content_child',
124 ] 124 ]
125 }] 125 }]
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 ['OS != "ios"', { 165 ['OS != "ios"', {
166 'targets': [ 166 'targets': [
167 { 167 {
168 'target_name': 'content_gpu', 168 'target_name': 'content_gpu',
169 'type': 'static_library', 169 'type': 'static_library',
170 'variables': { 'enable_wexit_time_destructors': 1, }, 170 'variables': { 'enable_wexit_time_destructors': 1, },
171 'includes': [ 171 'includes': [
172 'content_gpu.gypi', 172 'content_gpu.gypi',
173 ], 173 ],
174 'dependencies': [ 174 'dependencies': [
175 'content_child',
175 'content_common', 176 'content_common',
176 ], 177 ],
177 }, 178 },
178 { 179 {
179 'target_name': 'content_plugin', 180 'target_name': 'content_plugin',
180 'type': 'static_library', 181 'type': 'static_library',
181 'variables': { 'enable_wexit_time_destructors': 1, }, 182 'variables': { 'enable_wexit_time_destructors': 1, },
182 'includes': [ 183 'includes': [
183 'content_plugin.gypi', 184 'content_plugin.gypi',
184 ], 185 ],
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 ], 219 ],
219 }, 220 },
220 { 221 {
221 'target_name': 'content_utility', 222 'target_name': 'content_utility',
222 'type': 'static_library', 223 'type': 'static_library',
223 'variables': { 'enable_wexit_time_destructors': 1, }, 224 'variables': { 'enable_wexit_time_destructors': 1, },
224 'includes': [ 225 'includes': [
225 'content_utility.gypi', 226 'content_utility.gypi',
226 ], 227 ],
227 'dependencies': [ 228 'dependencies': [
229 'content_child',
228 'content_common', 230 'content_common',
229 ], 231 ],
230 }, 232 },
231 { 233 {
232 'target_name': 'content_worker', 234 'target_name': 'content_worker',
233 'type': 'static_library', 235 'type': 'static_library',
234 'variables': { 'enable_wexit_time_destructors': 1, }, 236 'variables': { 'enable_wexit_time_destructors': 1, },
235 'includes': [ 237 'includes': [
236 'content_worker.gypi', 238 'content_worker.gypi',
237 ], 239 ],
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 'include_dirs': [ 481 'include_dirs': [
480 '<(SHARED_INTERMEDIATE_DIR)/content', 482 '<(SHARED_INTERMEDIATE_DIR)/content',
481 ], 483 ],
482 }, 484 },
483 'includes': [ 'content_jni.gypi' ], 485 'includes': [ 'content_jni.gypi' ],
484 }, 486 },
485 ], 487 ],
486 }], # OS == "android" 488 }], # OS == "android"
487 ], 489 ],
488 } 490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698