Skip to content

Commit

Permalink
Cloud print service setup dialog.
Browse files Browse the repository at this point in the history
BUG=229183

Review URL: https://chromiumcodereview.appspot.com/13912002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193557 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
vitalybuka@chromium.org committed Apr 11, 2013
1 parent a88c047 commit 51362a7
Show file tree
Hide file tree
Showing 7 changed files with 579 additions and 1 deletion.
1 change: 1 addition & 0 deletions cloud_print/cloud_print.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
},
'sources': [
'service/win/cloud_print_service_exe.ver',
'service/win/cloud_print_service_setup_exe.ver',
'virtual_driver/win/gcp_portmon64_dll.ver',
'virtual_driver/win/gcp_portmon_dll.ver',
'virtual_driver/win/install/virtual_driver_setup_exe.ver',
Expand Down
32 changes: 31 additions & 1 deletion cloud_print/service/service.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
'<(SHARED_INTERMEDIATE_DIR)',
],
'defines' : [
'COMPILE_CONTENT_STATICALLY',
'SECURITY_WIN32',
'STRICT',
'_ATL_APARTMENT_THREADED',
Expand Down Expand Up @@ -49,7 +50,6 @@
{
'target_name': 'cloud_print_service_lib',
'type': 'static_library',
'defines': ['COMPILE_CONTENT_STATICALLY'],
'dependencies': [
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/base/base.gyp:base_static',
Expand Down Expand Up @@ -116,5 +116,35 @@
},
},
},
{
'target_name': 'cloud_print_service_setup',
'type': 'executable',
'sources': [
'<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_setup_exe_version.rc',
'win/cloud_print_service_setup.cc',
],
'includes': [
'win/service_resources.gypi'
],
'dependencies': [
'cloud_print_service_lib',
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
'UACExecutionLevel': '2', # /level='requireAdministrator'
'AdditionalDependencies': [
'secur32.lib',
],
'AdditionalOptions': [ # Enable Vista+ look.
"\"/manifestdependency:type='win32' "
"name='Microsoft.Windows.Common-Controls' "
"version='6.0.0.0' "
"processorArchitecture='*' "
"publicKeyToken='6595b64144ccf1df' language='*'\"",
],
},
},
},
],
}
Loading

0 comments on commit 51362a7

Please sign in to comment.