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 'conditions': [ | |
7 ['OS=="win"', { | |
8 'targets': [ | |
9 # TODO(jackhou): Add a version resource (using | |
10 # version_resource_rules.gypi). | |
11 { | |
12 'target_name': 'app_installer', | |
Lei Zhang
2014/10/24 19:15:23
I don't know the status of GN on Windows. Do you n
jackhou1
2014/10/27 05:50:51
brettw@, could I get your advice on this?
| |
13 'type': 'executable', | |
14 'dependencies': [ | |
15 'installer_util', | |
16 'installer_util_strings', | |
17 'launcher_support', | |
18 'common_constants.gyp:common_constants', | |
19 '../base/base.gyp:base', | |
20 '../third_party/omaha/omaha.gyp:omaha_extractor', | |
21 ], | |
22 'include_dirs': [ | |
23 '..', | |
24 '<(INTERMEDIATE_DIR)', | |
25 ], | |
26 'sources': [ | |
27 'win/app_installer_main.cc', | |
28 ], | |
29 'msvs_settings': { | |
30 'VCLinkerTool': { | |
31 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
32 }, | |
33 'VCManifestTool': { | |
34 'AdditionalManifestFiles': [ | |
35 'app_installer/win/app_installer.exe.manifest', | |
36 ], | |
37 }, | |
38 }, | |
39 }, | |
40 ], | |
41 }], | |
42 ], | |
43 } | |
OLD | NEW |