Chromium Code Reviews| Index: app_installer/app_installer.gypi |
| diff --git a/app_installer/app_installer.gypi b/app_installer/app_installer.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..acbe5f2a134d4f288fc913ba4a1afe64ba87d2e4 |
| --- /dev/null |
| +++ b/app_installer/app_installer.gypi |
| @@ -0,0 +1,38 @@ |
| +# 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. |
| + |
| +{ |
| + 'targets': [ |
| + # TODO(jackhou): Add a version resource (using |
| + # version_resource_rules.gypi). |
| + { |
| + 'target_name': 'app_installer', |
| + 'type': 'executable', |
| + 'dependencies': [ |
| + '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.
|
| + 'installer_util_strings', |
| + 'launcher_support', |
| + '../base/base.gyp:base', |
| + '../third_party/omaha/omaha.gyp:omaha_extractor', |
| + ], |
| + 'include_dirs': [ |
| + '..', |
| + '<(INTERMEDIATE_DIR)', |
| + ], |
| + 'sources': [ |
| + '../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.
|
| + ], |
| + 'msvs_settings': { |
| + 'VCLinkerTool': { |
| + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| + }, |
| + 'VCManifestTool': { |
| + 'AdditionalManifestFiles': [ |
| + '../app_installer/app_installer.exe.manifest', |
| + ], |
| + }, |
| + }, |
| + }, |
| + ], |
| +} |