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

Side by Side Diff: trunk/src/content/content.gyp

Issue 14882004: Revert 198834 "Add chrome_split_dll gyp variable, and duplicate ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
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 | 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 '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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'targets': [ 57 'targets': [
58 { 58 {
59 'target_name': 'content', 59 'target_name': 'content',
60 'type': 'none', 60 'type': 'none',
61 'dependencies': [ 61 'dependencies': [
62 'content_app', 62 'content_app',
63 'content_browser', 63 'content_browser',
64 'content_common', 64 'content_common',
65 ], 65 ],
66 'conditions': [ 66 'conditions': [
67 ['OS != "ios" and chrome_split_dll != 1', { 67 ['OS != "ios"', {
68 'dependencies': [ 68 'dependencies': [
69 'content_gpu', 69 'content_gpu',
70 'content_plugin', 70 'content_plugin',
71 'content_ppapi_plugin', 71 'content_ppapi_plugin',
72 'content_renderer', 72 'content_renderer',
73 'content_utility', 73 'content_utility',
74 'content_worker', 74 'content_worker',
75 ], 75 ],
76 }], 76 }],
77 ], 77 ],
(...skipping 14 matching lines...) Expand all
92 'type': 'static_library', 92 'type': 'static_library',
93 'variables': { 'enable_wexit_time_destructors': 1, }, 93 'variables': { 'enable_wexit_time_destructors': 1, },
94 'includes': [ 94 'includes': [
95 'content_browser.gypi', 95 'content_browser.gypi',
96 ], 96 ],
97 'dependencies': [ 97 'dependencies': [
98 'content_common', 98 'content_common',
99 'content_resources.gyp:content_resources', 99 'content_resources.gyp:content_resources',
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 ['OS != "ios" and chrome_split_dll != 1', { 102 ['OS != "ios"', {
103 'dependencies': [ 103 'dependencies': [
104 'content_gpu', 104 'content_gpu',
105 'content_renderer', 105 'content_renderer',
106 ], 106 ],
107 }], 107 }],
108 ['chrome_split_dll', {
109 'dependencies': [
110 'content_gpu',
111 ],
112 }],
113 ], 108 ],
114 }, 109 },
115 { 110 {
116 'target_name': 'content_common', 111 'target_name': 'content_common',
117 'type': 'static_library', 112 'type': 'static_library',
118 'variables': { 'enable_wexit_time_destructors': 1, }, 113 'variables': { 'enable_wexit_time_destructors': 1, },
119 'includes': [ 114 'includes': [
120 'content_common.gypi', 115 'content_common.gypi',
121 ], 116 ],
122 'conditions': [ 117 'conditions': [
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 'include_dirs': [ 391 'include_dirs': [
397 '<(SHARED_INTERMEDIATE_DIR)/content', 392 '<(SHARED_INTERMEDIATE_DIR)/content',
398 ], 393 ],
399 }, 394 },
400 'includes': [ 'content_jni.gypi' ], 395 'includes': [ 'content_jni.gypi' ],
401 }, 396 },
402 ], 397 ],
403 }], # OS == "android" 398 }], # OS == "android"
404 ], 399 ],
405 } 400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698