| Index: app_installer/app_installer.gyp
|
| diff --git a/app_installer/app_installer.gyp b/app_installer/app_installer.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..952784090961587006e49d5076de3971b1691e1f
|
| --- /dev/null
|
| +++ b/app_installer/app_installer.gyp
|
| @@ -0,0 +1,49 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +{
|
| + 'variables': {
|
| + 'chromium_code': 1,
|
| + },
|
| + 'conditions': [
|
| + ['OS=="win"', {
|
| + 'targets': [
|
| + # TODO(jackhou): Add a version resource (using
|
| + # version_resource_rules.gypi).
|
| + {
|
| + 'target_name': 'app_installer',
|
| + 'type': 'executable',
|
| + 'dependencies': [
|
| + '../base/base.gyp:base',
|
| + '../chrome/chrome.gyp:installer_util',
|
| + '../chrome/chrome.gyp:installer_util_strings',
|
| + '../chrome/chrome.gyp:launcher_support',
|
| + '../chrome/common_constants.gyp:common_constants',
|
| + '../third_party/omaha/omaha.gyp:omaha_extractor',
|
| + ],
|
| + 'includes': [
|
| + '../build/win_precompile.gypi',
|
| + ],
|
| + 'include_dirs': [
|
| + '..',
|
| + '<(INTERMEDIATE_DIR)',
|
| + ],
|
| + 'sources': [
|
| + 'win/app_installer_main.cc',
|
| + ],
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
|
| + },
|
| + 'VCManifestTool': {
|
| + 'AdditionalManifestFiles': [
|
| + 'win/app_installer.exe.manifest',
|
| + ],
|
| + },
|
| + },
|
| + },
|
| + ],
|
| + }],
|
| + ],
|
| +}
|
|
|