Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(760)

Unified Diff: app_installer/app_installer.gyp

Issue 423293004: Move app_installer into chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update omaha in src/DEPS. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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',
+ ],
+ },
+ },
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698