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

Side by Side 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: Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'conditions': [
10 ['OS=="win"', {
11 'targets': [
12 # TODO(jackhou): Add a version resource (using
13 # version_resource_rules.gypi).
14 {
15 'target_name': 'app_installer',
16 'type': 'executable',
17 'dependencies': [
18 '../base/base.gyp:base',
19 '../chrome/chrome.gyp:installer_util',
20 '../chrome/chrome.gyp:installer_util_strings',
21 '../chrome/chrome.gyp:launcher_support',
22 '../chrome/common_constants.gyp:common_constants',
23 '../third_party/omaha/omaha.gyp:omaha_extractor',
24 ],
25 'includes': [
26 '../build/win_precompile.gypi',
27 ],
28 'include_dirs': [
29 '..',
30 '<(INTERMEDIATE_DIR)',
31 ],
32 'sources': [
33 'win/app_installer_main.cc',
34 ],
35 'msvs_settings': {
36 'VCLinkerTool': {
37 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
38 },
39 'VCManifestTool': {
40 'AdditionalManifestFiles': [
41 'win/app_installer.exe.manifest',
42 ],
43 },
44 },
45 },
46 ],
47 }],
48 ],
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698