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

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

Issue 2185693003: Adding an It2Me host binary which is uiaccess enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@elevated
Patch Set: Merging! Created 4 years, 3 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/win/enable_uiaccess.manifest ('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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 %}
OLDNEW
« no previous file with comments | « remoting/host/win/enable_uiaccess.manifest ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698