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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 62793002: Allow printing component to be removed completely (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: also fix chromium_builder_tests, coverage_build Created 7 years, 1 month 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 | « chrome/chrome_common.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | 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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 },], 103 },],
104 ['OS=="win"', { 104 ['OS=="win"', {
105 'product_name': 'chrome', 105 'product_name': 'chrome',
106 'dependencies': [ 106 'dependencies': [
107 # On Windows, link the dependencies (libraries) that make 107 # On Windows, link the dependencies (libraries) that make
108 # up actual Chromium functionality into this .dll. 108 # up actual Chromium functionality into this .dll.
109 'chrome_dll_pdb_workaround', 109 'chrome_dll_pdb_workaround',
110 'chrome_version_resources', 110 'chrome_version_resources',
111 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', 111 '../chrome/chrome_resources.gyp:chrome_unscaled_resources',
112 '../crypto/crypto.gyp:crypto', 112 '../crypto/crypto.gyp:crypto',
113 '../printing/printing.gyp:printing',
114 '../net/net.gyp:net_resources', 113 '../net/net.gyp:net_resources',
115 '../ui/views/views.gyp:views', 114 '../ui/views/views.gyp:views',
116 '../webkit/webkit_resources.gyp:webkit_resources', 115 '../webkit/webkit_resources.gyp:webkit_resources',
117 ], 116 ],
118 'sources': [ 117 'sources': [
119 'app/chrome_command_ids.h', 118 'app/chrome_command_ids.h',
120 'app/chrome_dll.rc', 119 'app/chrome_dll.rc',
121 'app/chrome_dll_resource.h', 120 'app/chrome_dll_resource.h',
122 'app/chrome_main.cc', 121 'app/chrome_main.cc',
123 'app/chrome_main_delegate.cc', 122 'app/chrome_main_delegate.cc',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 '$(ProjectDir)\\app\\chrome.dll.manifest', 206 '$(ProjectDir)\\app\\chrome.dll.manifest',
208 ], 207 ],
209 }, 208 },
210 }, 209 },
211 'conditions': [ 210 'conditions': [
212 ['win_use_allocator_shim==1', { 211 ['win_use_allocator_shim==1', {
213 'dependencies': [ 212 'dependencies': [
214 '<(allocator_target)', 213 '<(allocator_target)',
215 ], 214 ],
216 }], 215 }],
216 ['enable_printing!=0', {
217 'dependencies': [
218 '../printing/printing.gyp:printing',
219 ],
220 }],
217 ] 221 ]
218 }], 222 }],
219 ['chrome_multiple_dll==1', { 223 ['chrome_multiple_dll==1', {
220 'defines': [ 224 'defines': [
221 'CHROME_MULTIPLE_DLL_BROWSER', 225 'CHROME_MULTIPLE_DLL_BROWSER',
222 ], 226 ],
223 }, { 227 }, {
224 'dependencies': [ 228 'dependencies': [
225 '<@(chromium_child_dependencies)', 229 '<@(chromium_child_dependencies)',
226 '../content/content.gyp:content_app_both', 230 '../content/content.gyp:content_app_both',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', 361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
358 'app/chrome_main.cc', 362 'app/chrome_main.cc',
359 'app/chrome_main_delegate.cc', 363 'app/chrome_main_delegate.cc',
360 'app/chrome_main_delegate.h', 364 'app/chrome_main_delegate.h',
361 ], 365 ],
362 }, # target chrome_child_dll 366 }, # target chrome_child_dll
363 ], 367 ],
364 }], 368 }],
365 ], 369 ],
366 } 370 }
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698