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

Side by Side Diff: app_installer/app_installer.gypi

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

Powered by Google App Engine
This is Rietveld 408576698