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..5b3afb04db762e0544113c7e12fe03048f409767 |
--- /dev/null |
+++ b/app_installer/app_installer.gyp |
@@ -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': [ |
grt (UTC plus 2)
2014/07/30 15:05:36
'includes': [
'../build/win_precompile.gypi',
grt (UTC plus 2)
2014/07/30 15:05:36
'variables': {
'chromium_code': 1,
},
jackhou1
2014/07/31 03:24:55
Done.
jackhou1
2014/07/31 03:24:55
Done.
|
+ # TODO(jackhou): Add a version resource (using |
+ # version_resource_rules.gypi). |
+ { |
grt (UTC plus 2)
2014/07/30 15:05:36
put this in a 'conditions': [['OS="win"', {}]] blo
jackhou1
2014/07/31 03:24:55
Done.
|
+ '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', |
+ '../third_party/omaha/omaha.gyp:omaha_extractor', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ '<(INTERMEDIATE_DIR)', |
+ ], |
+ 'sources': [ |
+ 'app_installer_main.cc', |
grt (UTC plus 2)
2014/07/30 15:05:36
consider putting this in a win/ sub-directory. thi
jackhou1
2014/07/31 03:24:55
Done.
|
+ ], |
+ 'msvs_settings': { |
+ 'VCLinkerTool': { |
+ 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
+ }, |
+ 'VCManifestTool': { |
+ 'AdditionalManifestFiles': [ |
+ 'app_installer.exe.manifest', |
+ ], |
+ }, |
+ }, |
+ }, |
+ ], |
+} |