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

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: Alphabetical order. Created 6 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/app_shim/DEPS ('k') | chrome/app_shim/win/app_shim.rc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': 'app_shim',
11 'type': 'executable',
12 'dependencies': [
13 'launcher_support',
14 '../base/base.gyp:base',
15 ],
16 'sources': [
17 'win/app_shim.rc',
18 'win/app_shim_main.cc',
19 ],
20 'msvs_settings': {
21 'VCLinkerTool': {
22 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
23 },
24 'VCManifestTool': {
25 'AdditionalManifestFiles': [
26 'app_shim/win/app_shim.exe.manifest',
27 ],
28 },
29 },
30 },
31 ], # targets
32 }
OLDNEW
« no previous file with comments | « chrome/app_shim/DEPS ('k') | chrome/app_shim/win/app_shim.rc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698