| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_REMOTE_SECURITY_KEY) | 70 #elif (BINARY == BINARY_REMOTE_SECURITY_KEY) |
| 71 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_SECURITY_KEY_DESCRIPT
ION{% endtrans %}" | 71 VALUE "FileDescription", "{% trans %}REMOTING_REMOTE_SECURITY_KEY_DESCRIPT
ION{% endtrans %}" |
| 72 VALUE "InternalName", "remote_security_key.exe" | 72 VALUE "InternalName", "remote_security_key.exe" |
| 73 VALUE "OriginalFilename", "remote_security_key.exe" | 73 VALUE "OriginalFilename", "remote_security_key.exe" |
| 74 #elif (BINARY == BINARY_REMOTING_START_HOST) |
| 75 VALUE "FileDescription", "{% trans %}REMOTING_START_HOST_DESCRIPTION{% end
trans %}" |
| 76 VALUE "InternalName", "remoting_start_host.exe" |
| 77 VALUE "OriginalFilename", "remoting_start_host.exe" |
| 74 #else | 78 #else |
| 75 #error BINARY must be set to one of BINARY_XXX values. | 79 #error BINARY must be set to one of BINARY_XXX values. |
| 76 #endif | 80 #endif |
| 77 END | 81 END |
| 78 END | 82 END |
| 79 BLOCK "VarFileInfo" | 83 BLOCK "VarFileInfo" |
| 80 BEGIN | 84 BEGIN |
| 81 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} | 85 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} |
| 82 END | 86 END |
| 83 END | 87 END |
| 84 | 88 |
| 85 {% endfor %} | 89 {% endfor %} |
| OLD | NEW |