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

Side by Side Diff: chrome/app_shim/app_shim_win.gypi

Issue 179223003: Adding app_shim executable on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved webstore.ico into win subdirectory. Created 6 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 # This is the app shim on Windows. It is a small binary that simply runs
8 # Chrome, passing along any command-line arguments.
9 {
10 'target_name': 'win_app_shim',
11 'type': 'executable',
12 'include_dirs': [
13 '../..',
14 ],
15 'dependencies': [
16 '../base/base.gyp:base',
17 ],
18 'sources': [
19 'app_shim_win.cc',
20 'win_app_shim.rc',
21 ],
22 'msvs_settings': {
jackhou1 2014/10/26 22:56:09 The other Windows exe's have a manifest file. I'm
robertshield 2014/10/27 17:30:50 You want one to avoid a bunch of shimming that ha
Matt Giuca 2014/10/30 06:39:05 OK, I haven't really looked into this. Since it do
robertshield 2014/10/31 16:58:30 API behaviour changes in different OS revisions an
Matt Giuca 2014/11/04 04:38:17 OK, I've added the manifest. Note: The way the bu
23 'VCLinkerTool': {
24 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
25 },
26 },
27 },
28 ], # targets
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698