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

Side by Side Diff: ui/views/examples/examples.gyp

Issue 470523005: Move startup_helper_win.cc to separate target for incremental build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: restore exe behavior for sandbox Created 6 years, 4 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 | « ui/app_list/app_list.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'views_examples_lib', 10 'target_name': 'views_examples_lib',
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 { 149 {
150 'target_name': 'views_examples_with_content_exe', 150 'target_name': 'views_examples_with_content_exe',
151 'type': 'executable', 151 'type': 'executable',
152 'dependencies': [ 152 'dependencies': [
153 '../../../base/base.gyp:base', 153 '../../../base/base.gyp:base',
154 '../../../content/content.gyp:content', 154 '../../../content/content.gyp:content',
155 '../../views_content_client/views_content_client.gyp:views_content_clien t', 155 '../../views_content_client/views_content_client.gyp:views_content_clien t',
156 'views_examples_with_content_lib', 156 'views_examples_with_content_lib',
157 ], 157 ],
158 'sources': [ 158 'sources': [
159 '../../../content/app/startup_helper_win.cc',
160 'examples_with_content_main_exe.cc', 159 'examples_with_content_main_exe.cc',
161 ], 160 ],
162 'conditions': [ 161 'conditions': [
163 ['OS=="win"', { 162 ['OS=="win"', {
164 'link_settings': { 163 'link_settings': {
165 'libraries': [ 164 'libraries': [
166 '-limm32.lib', 165 '-limm32.lib',
167 '-loleacc.lib', 166 '-loleacc.lib',
168 ] 167 ]
169 }, 168 },
170 'msvs_settings': { 169 'msvs_settings': {
171 'VCManifestTool': { 170 'VCManifestTool': {
172 'AdditionalManifestFiles': [ 171 'AdditionalManifestFiles': [
173 'views_examples.exe.manifest', 172 'views_examples.exe.manifest',
174 ], 173 ],
175 }, 174 },
176 'VCLinkerTool': { 175 'VCLinkerTool': {
177 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 176 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
178 }, 177 },
179 }, 178 },
180 'dependencies': [ 179 'dependencies': [
181 '../../../sandbox/sandbox.gyp:sandbox', 180 '../../../sandbox/sandbox.gyp:sandbox',
181 '../../../content/content.gyp:content_startup_helper_win',
182 ], 182 ],
183 }], 183 }],
184 ], 184 ],
185 }, # target_name: views_examples_with_content_exe 185 }, # target_name: views_examples_with_content_exe
186 ], 186 ],
187 } 187 }
OLDNEW
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698