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

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

Issue 19572012: Revert 212230 "Create top-level separate targets for browser and..." (Closed) Base URL: svn://svn.chromium.org/chrome/
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
Property Changes:
Deleted: svn:mergeinfo
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 { 45 {
46 'target_name': 'content', 46 'target_name': 'content',
47 'type': 'none', 47 'type': 'none',
48 'dependencies': [ 48 'dependencies': [
49 'content_app', 49 'content_app',
50 'content_browser', 50 'content_browser',
51 'content_child', 51 'content_child',
52 'content_common', 52 'content_common',
53 ], 53 ],
54 'conditions': [ 54 'conditions': [
55 ['OS != "ios"', { 55 ['OS != "ios" and chrome_split_dll != 1', {
56 'dependencies': [ 56 'dependencies': [
57 'content_gpu', 57 'content_gpu',
58 'content_plugin', 58 'content_plugin',
59 'content_ppapi_plugin', 59 'content_ppapi_plugin',
60 'content_renderer', 60 'content_renderer',
61 'content_utility', 61 'content_utility',
62 'content_worker', 62 'content_worker',
63 ], 63 ],
64 }], 64 }],
65 ], 65 ],
66 }, 66 },
67 { 67 {
68 'target_name': 'content_app', 68 'target_name': 'content_app',
69 'type': 'static_library', 69 'type': 'static_library',
70 'variables': { 'enable_wexit_time_destructors': 1, }, 70 'variables': { 'enable_wexit_time_destructors': 1, },
71 'includes': [ 71 'includes': [
72 'content_app.gypi', 72 'content_app.gypi',
73 ], 73 ],
74 'dependencies': [ 74 'dependencies': [
75 'content_common', 75 'content_common',
76 ], 76 ],
77 'conditions': [
78 ['chrome_multiple_dll', {
79 'defines': [
80 'CHROME_MULTIPLE_DLL_BROWSER',
81 ],
82 }],
83 ],
84 },
85 {
86 'target_name': 'content_app_child',
87 'type': 'static_library',
88 'variables': { 'enable_wexit_time_destructors': 1, },
89 'includes': [
90 'content_app.gypi',
91 ],
92 'dependencies': [
93 'content_common',
94 ],
95 'conditions': [
96 ['chrome_multiple_dll', {
97 'defines': [
98 'CHROME_MULTIPLE_DLL_CHILD',
99 ],
100 }],
101 ],
102 }, 77 },
103 { 78 {
104 'target_name': 'content_browser', 79 'target_name': 'content_browser',
105 'type': 'static_library', 80 'type': 'static_library',
106 'variables': { 'enable_wexit_time_destructors': 1, }, 81 'variables': { 'enable_wexit_time_destructors': 1, },
107 'includes': [ 82 'includes': [
108 'content_browser.gypi', 83 'content_browser.gypi',
109 ], 84 ],
110 'dependencies': [ 85 'dependencies': [
111 'content_common', 86 'content_common',
112 'content_resources.gyp:content_resources', 87 'content_resources.gyp:content_resources',
113 ], 88 ],
114 'conditions': [ 89 'conditions': [
115 ['OS != "ios"', { 90 ['OS != "ios" and chrome_split_dll != 1', {
116 'dependencies': [ 91 'dependencies': [
117 'content_gpu', 92 'content_gpu',
93 'content_renderer',
118 'content_utility', 94 'content_utility',
119 ], 95 ],
120 }], 96 }],
97 ['chrome_split_dll', {
98 'dependencies': [
99 'content_gpu',
100 ],
101 }],
121 ['java_bridge==1', { 102 ['java_bridge==1', {
122 'dependencies': [ 103 'dependencies': [
123 'content_child', 104 'content_child',
124 ] 105 ]
125 }] 106 }]
126 ], 107 ],
127 }, 108 },
128 { 109 {
129 'target_name': 'content_common', 110 'target_name': 'content_common',
130 'type': 'static_library', 111 'type': 'static_library',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 ], 267 ],
287 }, 268 },
288 }, 269 },
289 }, 270 },
290 { 271 {
291 'target_name': 'content_app', 272 'target_name': 'content_app',
292 'type': 'none', 273 'type': 'none',
293 'dependencies': ['content', 'content_browser'], 274 'dependencies': ['content', 'content_browser'],
294 }, 275 },
295 { 276 {
296 'target_name': 'content_app_child',
297 'type': 'none',
298 'dependencies': ['content', 'content_child'],
299 },
300 {
301 'target_name': 'content_browser', 277 'target_name': 'content_browser',
302 'type': 'none', 278 'type': 'none',
303 'dependencies': ['content'], 279 'dependencies': ['content'],
304 }, 280 },
305 { 281 {
306 'target_name': 'content_common', 282 'target_name': 'content_common',
307 'type': 'none', 283 'type': 'none',
308 'dependencies': ['content', 'content_resources.gyp:content_resources'] , 284 'dependencies': ['content', 'content_resources.gyp:content_resources'] ,
309 # Disable c4267 warnings until we fix size_t to int truncations. 285 # Disable c4267 warnings until we fix size_t to int truncations.
310 'msvs_disabled_warnings': [ 4267, ], 286 'msvs_disabled_warnings': [ 4267, ],
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 'include_dirs': [ 455 'include_dirs': [
480 '<(SHARED_INTERMEDIATE_DIR)/content', 456 '<(SHARED_INTERMEDIATE_DIR)/content',
481 ], 457 ],
482 }, 458 },
483 'includes': [ 'content_jni.gypi' ], 459 'includes': [ 'content_jni.gypi' ],
484 }, 460 },
485 ], 461 ],
486 }], # OS == "android" 462 }], # OS == "android"
487 ], 463 ],
488 } 464 }
OLDNEW
« no previous file with comments | « trunk/src/content/browser/renderer_host/render_process_host_impl.cc ('k') | trunk/src/content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698