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

Side by Side Diff: content/content_shell.gypi

Issue 8233039: Link startup_helper_win statically into executables (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove dynamic-only changes Created 9 years, 2 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 | « content/app/startup_helper_win.h ('k') | content/content_tests.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_shell_lib', 8 'target_name': 'content_shell_lib',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 }, 106 },
107 { 107 {
108 'target_name': 'content_shell', 108 'target_name': 'content_shell',
109 'type': 'executable', 109 'type': 'executable',
110 'defines!': ['CONTENT_IMPLEMENTATION'], 110 'defines!': ['CONTENT_IMPLEMENTATION'],
111 'variables': { 111 'variables': {
112 'chromium_code': 1, 112 'chromium_code': 1,
113 }, 113 },
114 'dependencies': [ 114 'dependencies': [
115 'content_shell_lib', 115 'content_shell_lib',
116 '../sandbox/sandbox.gyp:sandbox',
116 ], 117 ],
117 'include_dirs': [ 118 'include_dirs': [
118 '..', 119 '..',
119 ], 120 ],
120 'sources': [ 121 'sources': [
122 'app/startup_helper_win.cc',
121 'shell/shell_main.cc', 123 'shell/shell_main.cc',
122 ], 124 ],
123 'msvs_settings': { 125 'msvs_settings': {
124 'VCLinkerTool': { 126 'VCLinkerTool': {
125 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 127 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
126 }, 128 },
127 }, 129 },
128 'conditions': [ 130 'conditions': [
129 ['OS=="win" and win_use_allocator_shim==1', { 131 ['OS=="win" and win_use_allocator_shim==1', {
130 'dependencies': [ 132 'dependencies': [
131 '../base/allocator/allocator.gyp:allocator', 133 '../base/allocator/allocator.gyp:allocator',
132 ], 134 ],
133 }], 135 }],
134 ['OS=="win"', { 136 ['OS=="win"', {
135 'configurations': { 137 'configurations': {
136 'Debug_Base': { 138 'Debug_Base': {
137 'msvs_settings': { 139 'msvs_settings': {
138 'VCLinkerTool': { 140 'VCLinkerTool': {
139 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 141 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
140 }, 142 },
141 }, 143 },
142 }, 144 },
143 }, 145 },
144 }], 146 }],
145 ], 147 ],
146 }, 148 },
147 ], 149 ],
148 } 150 }
OLDNEW
« no previous file with comments | « content/app/startup_helper_win.h ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698