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

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

Powered by Google App Engine
This is Rietveld 408576698