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

Side by Side Diff: remoting/host/win/version.rc.jinja2

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 unified diff | Download patch
« no previous file with comments | « no previous file | remoting/remoting.gyp » ('j') | remoting/remoting_host.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include <winresrc.h> 5 #include <winresrc.h>
6 6
7 #ifdef IDC_STATIC 7 #ifdef IDC_STATIC
8 #undef IDC_STATIC 8 #undef IDC_STATIC
9 #endif 9 #endif
10 #define IDC_STATIC (-1) 10 #define IDC_STATIC (-1)
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 VALUE "OriginalFilename", "remoting_desktop.exe" 57 VALUE "OriginalFilename", "remoting_desktop.exe"
58 #elif (BINARY == BINARY_HOST_ME2ME) 58 #elif (BINARY == BINARY_HOST_ME2ME)
59 VALUE "FileDescription", "{% trans %}REMOTING_HOST_DESCRIPTION{% endtrans %}" 59 VALUE "FileDescription", "{% trans %}REMOTING_HOST_DESCRIPTION{% endtrans %}"
60 VALUE "InternalName", "remoting_host.exe" 60 VALUE "InternalName", "remoting_host.exe"
61 VALUE "OriginalFilename", "remoting_host.exe" 61 VALUE "OriginalFilename", "remoting_host.exe"
62 #elif (BINARY == BINARY_HOST_PLUGIN) 62 #elif (BINARY == BINARY_HOST_PLUGIN)
63 VALUE "FileDescription", "{% trans %}REMOTING_HOST_PLUGIN_DESCRIPTION{% en dtrans %}" 63 VALUE "FileDescription", "{% trans %}REMOTING_HOST_PLUGIN_DESCRIPTION{% en dtrans %}"
64 VALUE "InternalName", "remoting_host_plugin.dll" 64 VALUE "InternalName", "remoting_host_plugin.dll"
65 VALUE "OriginalFilename", "remoting_host_plugin.dll" 65 VALUE "OriginalFilename", "remoting_host_plugin.dll"
66 VALUE "MIMEType", STRINGIZE(HOST_PLUGIN_MIME_TYPE) 66 VALUE "MIMEType", STRINGIZE(HOST_PLUGIN_MIME_TYPE)
67 #elif (BINARY == BINARY_NATIVE_MESSAGING_HOST)
68 VALUE "FileDescription", "{% trans %}REMOTING_NATIVE_MESSAGING_HOST_DESCRI PTION{% endtrans %}"
69 VALUE "InternalName", "remoting_native_messaging_host.exe"
70 VALUE "OriginalFilename", "remoting_native_messaging_host.exe"
71 #elif (BINARY == BINARY_REMOTE_ASSISTANCE_HOST)
72 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_ASSISTANCE_HOST_DESCR IPTION{% endtrans %}"
73 VALUE "InternalName", "remote_assistance_host.exe"
74 VALUE "OriginalFilename", "remote_assistance_host.exe"
67 #else 75 #else
68 #error BINARY must be set to one of BINARY_XXX values. 76 #error BINARY must be set to one of BINARY_XXX values.
69 #endif 77 #endif
70 END 78 END
71 END 79 END
72 BLOCK "VarFileInfo" 80 BLOCK "VarFileInfo"
73 BEGIN 81 BEGIN
74 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal }} 82 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal }}
75 END 83 END
76 END 84 END
77 85
78 {% endfor %} 86 {% endfor %}
OLDNEW
« no previous file with comments | « no previous file | remoting/remoting.gyp » ('j') | remoting/remoting_host.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698