| OLD | NEW |
| 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 Loading... |
| 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 %} |
| OLD | NEW |