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

Side by Side Diff: chrome/chrome_installer_util.gypi

Issue 10665002: Implement installation of the Chrome App Host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A basic working app host installer/uninstaller. Created 8 years, 5 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
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
grt (UTC plus 2) 2012/07/12 18:37:10 2012
erikwright (departed) 2012/07/16 20:13:11 Done.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'installer_util_target': 0, 8 'installer_util_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 # This part is shared between the two versions of the target. 11 # This part is shared between the two versions of the target.
12 ['installer_util_target==1', { 12 ['installer_util_target==1', {
13 'sources': [ 13 'sources': [
14 'installer/util/app_command.cc', 14 'installer/util/app_command.cc',
15 'installer/util/app_command.h', 15 'installer/util/app_command.h',
16 'installer/util/app_commands.cc', 16 'installer/util/app_commands.cc',
17 'installer/util/app_commands.h', 17 'installer/util/app_commands.h',
18 'installer/util/auto_launch_util.cc', 18 'installer/util/auto_launch_util.cc',
19 'installer/util/auto_launch_util.h', 19 'installer/util/auto_launch_util.h',
20 'installer/util/browser_distribution.cc', 20 'installer/util/browser_distribution.cc',
21 'installer/util/browser_distribution.h', 21 'installer/util/browser_distribution.h',
22 'installer/util/channel_info.cc', 22 'installer/util/channel_info.cc',
23 'installer/util/channel_info.h', 23 'installer/util/channel_info.h',
24 'installer/util/chrome_app_host_distribution.cc',
25 'installer/util/chrome_app_host_distribution.h',
24 'installer/util/chrome_frame_distribution.cc', 26 'installer/util/chrome_frame_distribution.cc',
25 'installer/util/chrome_frame_distribution.h', 27 'installer/util/chrome_frame_distribution.h',
26 'installer/util/chromium_binaries_distribution.cc', 28 'installer/util/chromium_binaries_distribution.cc',
27 'installer/util/chromium_binaries_distribution.h', 29 'installer/util/chromium_binaries_distribution.h',
28 'installer/util/conditional_work_item_list.cc', 30 'installer/util/conditional_work_item_list.cc',
29 'installer/util/conditional_work_item_list.h', 31 'installer/util/conditional_work_item_list.h',
30 'installer/util/copy_reg_key_work_item.cc', 32 'installer/util/copy_reg_key_work_item.cc',
31 'installer/util/copy_reg_key_work_item.h', 33 'installer/util/copy_reg_key_work_item.h',
32 'installer/util/copy_tree_work_item.cc', 34 'installer/util/copy_tree_work_item.cc',
33 'installer/util/copy_tree_work_item.h', 35 'installer/util/copy_tree_work_item.h',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 109 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
108 '<(DEPTH)/content/content.gyp:content_common', 110 '<(DEPTH)/content/content.gyp:content_common',
109 '<(DEPTH)/courgette/courgette.gyp:courgette_lib', 111 '<(DEPTH)/courgette/courgette.gyp:courgette_lib',
110 '<(DEPTH)/crypto/crypto.gyp:crypto', 112 '<(DEPTH)/crypto/crypto.gyp:crypto',
111 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch', 113 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch',
112 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 114 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
113 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 115 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
114 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', 116 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk',
115 ], 117 ],
116 'sources': [ 118 'sources': [
119 'installer/util/chrome_app_host_operations.cc',
120 'installer/util/chrome_app_host_operations.h',
121 'installer/util/chrome_binaries_operations.cc',
122 'installer/util/chrome_binaries_operations.h',
117 'installer/util/chrome_browser_operations.cc', 123 'installer/util/chrome_browser_operations.cc',
118 'installer/util/chrome_browser_operations.h', 124 'installer/util/chrome_browser_operations.h',
119 'installer/util/chrome_browser_sxs_operations.cc', 125 'installer/util/chrome_browser_sxs_operations.cc',
120 'installer/util/chrome_browser_sxs_operations.h', 126 'installer/util/chrome_browser_sxs_operations.h',
121 'installer/util/chrome_frame_operations.cc', 127 'installer/util/chrome_frame_operations.cc',
122 'installer/util/chrome_frame_operations.h', 128 'installer/util/chrome_frame_operations.h',
123 'installer/util/compat_checks.cc', 129 'installer/util/compat_checks.cc',
124 'installer/util/compat_checks.h', 130 'installer/util/compat_checks.h',
125 'installer/util/delete_after_reboot_helper.cc', 131 'installer/util/delete_after_reboot_helper.cc',
126 'installer/util/delete_after_reboot_helper.h', 132 'installer/util/delete_after_reboot_helper.h',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'sources': [ '../content/public/common/content_switches.cc' ], 208 'sources': [ '../content/public/common/content_switches.cc' ],
203 'defines': [ 'COMPILE_CONTENT_STATICALLY'], 209 'defines': [ 'COMPILE_CONTENT_STATICALLY'],
204 }], 210 }],
205 ], 211 ],
206 } 212 }
207 ], 213 ],
208 }], 214 }],
209 215
210 ], 216 ],
211 } 217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698