OLD | NEW |
---|---|
(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': [ | |
Matt Giuca
2014/10/24 09:45:46
Note: I tried putting this in app_shim.gypi, but G
jackhou1
2014/10/26 23:16:43
Yeah that's fine. I'll rename the mac one.
| |
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': { | |
23 'VCLinkerTool': { | |
24 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
25 }, | |
26 }, | |
27 }, | |
28 ], # targets | |
29 } | |
OLD | NEW |