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

Side by Side Diff: cloud_print/service/service.gyp

Issue 14358019: Added Cloud Print Service installer/uninstaller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | cloud_print/service/service_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'enable_wexit_time_destructors': 1, 8 'enable_wexit_time_destructors': 1,
9 }, 9 },
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 '<(DEPTH)/chrome/chrome.gyp:launcher_support', 68 '<(DEPTH)/chrome/chrome.gyp:launcher_support',
69 '<(DEPTH)/chrome/common_constants.gyp:common_constants', 69 '<(DEPTH)/chrome/common_constants.gyp:common_constants',
70 ], 70 ],
71 }], 71 }],
72 ], 72 ],
73 'sources': [ 73 'sources': [
74 '<(DEPTH)/content/public/common/content_switches.h', 74 '<(DEPTH)/content/public/common/content_switches.h',
75 '<(DEPTH)/content/public/common/content_switches.cc', 75 '<(DEPTH)/content/public/common/content_switches.cc',
76 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', 76 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc',
77 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', 77 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h',
78 'service_constants.cc',
79 'service_constants.h',
78 'service_state.cc', 80 'service_state.cc',
79 'service_state.h', 81 'service_state.h',
80 'service_switches.cc', 82 'service_switches.cc',
81 'service_switches.h', 83 'service_switches.h',
82 'win/chrome_launcher.cc', 84 'win/chrome_launcher.cc',
83 'win/chrome_launcher.h', 85 'win/chrome_launcher.h',
84 'win/local_security_policy.cc', 86 'win/local_security_policy.cc',
85 'win/local_security_policy.h', 87 'win/local_security_policy.h',
86 'win/service_controller.cc', 88 'win/service_controller.cc',
87 'win/service_controller.h', 89 'win/service_controller.h',
(...skipping 27 matching lines...) Expand all
115 ], 117 ],
116 }, 118 },
117 }, 119 },
118 }, 120 },
119 { 121 {
120 'target_name': 'cloud_print_service_config', 122 'target_name': 'cloud_print_service_config',
121 'type': 'executable', 123 'type': 'executable',
122 'sources': [ 124 'sources': [
123 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_config_exe_v ersion.rc', 125 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_config_exe_v ersion.rc',
124 'win/cloud_print_service_config.cc', 126 'win/cloud_print_service_config.cc',
127 'win/installer.cc',
128 'win/installer.h',
125 ], 129 ],
126 'includes': [ 130 'includes': [
127 'win/service_resources.gypi' 131 'win/service_resources.gypi'
128 ], 132 ],
129 'dependencies': [ 133 'dependencies': [
130 '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', 134 '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib',
131 'cloud_print_service_lib', 135 'cloud_print_service_lib',
132 ], 136 ],
133 'msvs_settings': { 137 'msvs_settings': {
134 'VCLinkerTool': { 138 'VCLinkerTool': {
135 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 139 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
136 'UACExecutionLevel': '2', # /level='requireAdministrator' 140 'UACExecutionLevel': '2', # /level='requireAdministrator'
137 'AdditionalDependencies': [ 141 'AdditionalDependencies': [
138 'secur32.lib', 142 'secur32.lib',
139 ], 143 ],
140 'AdditionalOptions': [ # Enable Vista+ look. 144 'AdditionalOptions': [ # Enable Vista+ look.
141 "\"/manifestdependency:type='win32' " 145 "\"/manifestdependency:type='win32' "
142 "name='Microsoft.Windows.Common-Controls' " 146 "name='Microsoft.Windows.Common-Controls' "
143 "version='6.0.0.0' " 147 "version='6.0.0.0' "
144 "processorArchitecture='*' " 148 "processorArchitecture='*' "
145 "publicKeyToken='6595b64144ccf1df' language='*'\"", 149 "publicKeyToken='6595b64144ccf1df' language='*'\"",
146 ], 150 ],
147 }, 151 },
148 }, 152 },
149 }, 153 },
150 ], 154 ],
151 } 155 }
OLDNEW
« no previous file with comments | « no previous file | cloud_print/service/service_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698