OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |