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

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

Issue 2049173003: Updating remoting_start_host to use remoting_core.dll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR feedback Created 4 years, 6 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 | « remoting/host/setup/start_host_main.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 %}
OLDNEW
« no previous file with comments | « remoting/host/setup/start_host_main.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698