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

Side by Side Diff: chrome/app_installer/app_installer.gypi

Issue 423293004: Move app_installer into chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git cl format Created 6 years, 1 month 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 'conditions': [
7 ['OS=="win"', {
8 'targets': [
9 # TODO(jackhou): Add a version resource (using
10 # version_resource_rules.gypi).
11 {
12 'target_name': 'app_installer',
13 'type': 'executable',
14 'dependencies': [
15 'installer_util',
16 'installer_util_strings',
17 'launcher_support',
18 'common_constants.gyp:common_constants',
19 '../base/base.gyp:base',
20 '../third_party/omaha/omaha.gyp:omaha_extractor',
21 ],
22 'include_dirs': [
23 '..',
24 '<(INTERMEDIATE_DIR)',
25 ],
26 'sources': [
27 'win/app_installer_main.cc',
28 ],
29 'msvs_settings': {
30 'VCLinkerTool': {
31 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
32 },
33 'VCManifestTool': {
34 'AdditionalManifestFiles': [
35 'app_installer/win/app_installer.exe.manifest',
36 ],
37 },
38 },
39 },
40 ],
41 }],
42 ],
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698