| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_NATIVE_MESSAGING_HOST) | 62 #elif (BINARY == BINARY_NATIVE_MESSAGING_HOST) |
| 63 VALUE "FileDescription", "{% trans %}REMOTING_NATIVE_MESSAGING_HOST_DESCRI
PTION{% endtrans %}" | 63 VALUE "FileDescription", "{% trans %}REMOTING_NATIVE_MESSAGING_HOST_DESCRI
PTION{% endtrans %}" |
| 64 VALUE "InternalName", "remoting_native_messaging_host.exe" | 64 VALUE "InternalName", "remoting_native_messaging_host.exe" |
| 65 VALUE "OriginalFilename", "remoting_native_messaging_host.exe" | 65 VALUE "OriginalFilename", "remoting_native_messaging_host.exe" |
| 66 #elif (BINARY == BINARY_REMOTE_ASSISTANCE_HOST) | 66 #elif (BINARY == BINARY_REMOTE_ASSISTANCE_HOST) |
| 67 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_ASSISTANCE_HOST_DESCR
IPTION{% endtrans %}" | 67 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_ASSISTANCE_HOST_DESCR
IPTION{% endtrans %}" |
| 68 VALUE "InternalName", "remote_assistance_host.exe" | 68 VALUE "InternalName", "remote_assistance_host.exe" |
| 69 VALUE "OriginalFilename", "remote_assistance_host.exe" | 69 VALUE "OriginalFilename", "remote_assistance_host.exe" |
| 70 #elif (BINARY == BINARY_HOST_IT2ME_UIACCESS) |
| 71 // Intentionally reuse the description for 'BINARY_REMOTE_ASSISTANCE_HOST' |
| 72 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_ASSISTANCE_HOST_DESCR
IPTION{% endtrans %}" |
| 73 VALUE "InternalName", "remote_assistance_host_uiaccess.exe" |
| 74 VALUE "OriginalFilename", "remote_assistance_host_uiaccess.exe" |
| 70 #elif (BINARY == BINARY_REMOTE_SECURITY_KEY) | 75 #elif (BINARY == BINARY_REMOTE_SECURITY_KEY) |
| 71 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_SECURITY_KEY_DESCRIPT
ION{% endtrans %}" | 76 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_SECURITY_KEY_DESCRIPT
ION{% endtrans %}" |
| 72 VALUE "InternalName", "remote_security_key.exe" | 77 VALUE "InternalName", "remote_security_key.exe" |
| 73 VALUE "OriginalFilename", "remote_security_key.exe" | 78 VALUE "OriginalFilename", "remote_security_key.exe" |
| 74 #elif (BINARY == BINARY_REMOTING_START_HOST) | 79 #elif (BINARY == BINARY_REMOTING_START_HOST) |
| 75 VALUE "FileDescription", "{% trans %}REMOTING_START_HOST_DESCRIPTION{% end
trans %}" | 80 VALUE "FileDescription", "{% trans %}REMOTING_START_HOST_DESCRIPTION{% end
trans %}" |
| 76 VALUE "InternalName", "remoting_start_host.exe" | 81 VALUE "InternalName", "remoting_start_host.exe" |
| 77 VALUE "OriginalFilename", "remoting_start_host.exe" | 82 VALUE "OriginalFilename", "remoting_start_host.exe" |
| 78 #else | 83 #else |
| 79 #error BINARY must be set to one of BINARY_XXX values. | 84 #error BINARY must be set to one of BINARY_XXX values. |
| 80 #endif | 85 #endif |
| 81 END | 86 END |
| 82 END | 87 END |
| 83 BLOCK "VarFileInfo" | 88 BLOCK "VarFileInfo" |
| 84 BEGIN | 89 BEGIN |
| 85 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} | 90 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} |
| 86 END | 91 END |
| 87 END | 92 END |
| 88 | 93 |
| 89 {% endfor %} | 94 {% endfor %} |
| OLD | NEW |