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 'variables': { | |
7 'chromium_code': 1, | |
grt (UTC plus 2)
2014/10/22 13:33:57
please remove this (other .gypi files included by
jackhou1
2014/10/23 03:47:34
Done.
| |
8 }, | |
9 'conditions': [ | |
10 ['OS=="win"', { | |
11 'targets': [ | |
12 # TODO(jackhou): Add a version resource (using | |
13 # version_resource_rules.gypi). | |
14 { | |
15 'target_name': 'app_installer', | |
16 'type': 'executable', | |
17 'dependencies': [ | |
18 '../base/base.gyp:base', | |
19 'chrome.gyp:installer_util', | |
grt (UTC plus 2)
2014/10/22 13:33:57
remove 'chrome.gyp:' from these dependencies since
jackhou1
2014/10/23 03:47:34
Done.
| |
20 'chrome.gyp:installer_util_strings', | |
21 'chrome.gyp:launcher_support', | |
22 'common_constants.gyp:common_constants', | |
23 '../third_party/omaha/omaha.gyp:omaha_extractor', | |
24 ], | |
25 'includes': [ | |
26 '../../build/win_precompile.gypi', | |
grt (UTC plus 2)
2014/10/22 13:33:57
remove this
jackhou1
2014/10/23 03:47:34
Done.
| |
27 ], | |
28 'include_dirs': [ | |
29 '..', | |
30 '<(INTERMEDIATE_DIR)', | |
31 ], | |
32 'sources': [ | |
33 'win/app_installer_main.cc', | |
34 ], | |
35 'msvs_settings': { | |
36 'VCLinkerTool': { | |
37 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
38 }, | |
39 'VCManifestTool': { | |
40 'AdditionalManifestFiles': [ | |
41 'app_installer/win/app_installer.exe.manifest', | |
42 ], | |
43 }, | |
44 }, | |
45 }, | |
46 ], | |
47 }], | |
48 ], | |
49 } | |
OLD | NEW |