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': [ | |
7 # TODO(jackhou): Add a version resource (using | |
8 # version_resource_rules.gypi). | |
9 { | |
10 'target_name': 'app_installer', | |
11 'type': 'executable', | |
12 'dependencies': [ | |
13 'installer_util', | |
tapted
2014/07/30 04:12:50
these would be ../chrome/chrome.gyp:installer_util
jackhou1
2014/07/30 05:01:05
Done.
| |
14 'installer_util_strings', | |
15 'launcher_support', | |
16 '../base/base.gyp:base', | |
17 '../third_party/omaha/omaha.gyp:omaha_extractor', | |
18 ], | |
19 'include_dirs': [ | |
20 '..', | |
21 '<(INTERMEDIATE_DIR)', | |
22 ], | |
23 'sources': [ | |
24 '../app_installer/app_installer_main.cc', | |
tapted
2014/07/30 04:12:50
remove '../app_installer/' after moving to .gyp
jackhou1
2014/07/30 05:01:05
Done.
| |
25 ], | |
26 'msvs_settings': { | |
27 'VCLinkerTool': { | |
28 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
29 }, | |
30 'VCManifestTool': { | |
31 'AdditionalManifestFiles': [ | |
32 '../app_installer/app_installer.exe.manifest', | |
33 ], | |
34 }, | |
35 }, | |
36 }, | |
37 ], | |
38 } | |
OLD | NEW |