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

Unified Diff: remoting/remoting_host.gypi

Issue 171163003: Add version info resource to the it2me and me2me native messaging hosts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/remoting.gyp ('k') | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_host.gypi
diff --git a/remoting/remoting_host.gypi b/remoting/remoting_host.gypi
index 93f7cf076cb5fd2f35ee8d6c37688ece9cd5fe77..46b31ec0c61d6d8086c5e720b843803f7c3d2726 100644
--- a/remoting/remoting_host.gypi
+++ b/remoting/remoting_host.gypi
@@ -577,6 +577,22 @@
'../base/allocator/allocator.gyp:allocator',
],
}],
+ ['OS=="win"', {
+ 'defines' : [
+ 'BINARY=BINARY_NATIVE_MESSAGING_HOST',
+ ],
+ 'dependencies': [
+ 'remoting_windows_resources',
+ ],
+ 'sources': [
+ '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1', # /SUBSYSTEM:CONSOLE
+ },
+ },
+ }],
],
}, # end of target 'remoting_me2me_native_messaging_host'
{
@@ -609,6 +625,15 @@
}],
['OS=="win"', {
'product_name': 'remote_assistance_host',
+ 'defines' : [
+ 'BINARY=BINARY_REMOTE_ASSISTANCE_HOST',
+ ],
+ 'dependencies': [
+ 'remoting_windows_resources',
+ ],
+ 'sources': [
+ '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc',
+ ],
'msvs_settings': {
'VCManifestTool': {
'EmbedManifest': 'true',
@@ -618,6 +643,7 @@
],
},
'VCLinkerTool': {
+ 'SubSystem': '1', # /SUBSYSTEM:CONSOLE
'AdditionalDependencies': [
'comctl32.lib',
],
« no previous file with comments | « remoting/remoting.gyp ('k') | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698