Implement disable-app-list-dismiss-on-blur for ChromeOS.
[chromium-blink-merge.git] / chrome / app_installer / app_installer.gypi
blobf83df523ba6cf1e253922af42c24054a2e1468b1
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.
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',
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   ],