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

Unified Diff: remoting/remoting.gyp

Issue 11090063: [Chromoting] Add a simple Windows app that registers and starts a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix non-standard resource header file. Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/setup/win/start_host_window.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting.gyp
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 6e3365ea45d4765e6081711e32e9df0789125790..70063794838dcbdfcb243c7c640eb995849df15e 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -544,6 +544,41 @@
],
}, # end of target 'remoting_elevated_controller'
{
+ 'target_name': 'remoting_configurer',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../crypto/crypto.gyp:crypto',
+ 'remoting_host',
+ 'remoting_host_setup_base',
+ ],
+ 'sources': [
+ 'host/branding.cc',
+ 'host/setup/win/host_configurer.cc',
+ 'host/setup/win/host_configurer.rc',
+ 'host/setup/win/host_configurer_window.cc',
+ 'host/setup/win/host_configurer_window.h',
+ 'host/setup/win/host_configurer_resource.h',
+ 'host/setup/win/load_string_from_resource.cc',
+ 'host/setup/win/load_string_from_resource.h',
+ 'host/setup/win/start_host_window.cc',
+ 'host/setup/win/start_host_window.h',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalOptions': [
+ "\"/manifestdependency:type='win32' "
+ "name='Microsoft.Windows.Common-Controls' "
+ "version='6.0.0.0' "
+ "processorArchitecture='*' "
+ "publicKeyToken='6595b64144ccf1df' language='*'\"",
+ ],
+ # 2 == /SUBSYSTEM:WINDOWS
+ 'SubSystem': '2',
+ },
+ },
+ }, # end of target 'remoting_configurer'
+ {
'target_name': 'remoting_controller',
'type': 'executable',
'variables': { 'enable_wexit_time_destructors': 1, },
« no previous file with comments | « remoting/host/setup/win/start_host_window.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698