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

Side by Side Diff: remoting/version.rc.version

Issue 10910075: [Chromoting] Adding the desktop integration binary to the host installation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix preprocessor conditions in .WXS & rebased Created 8 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 | Annotate | Revision Log
« no previous file with comments | « remoting/remoting.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <verrsrc.h> 5 #include <verrsrc.h>
6 6
7 ///////////////////////////////////////////////////////////////////////////// 7 /////////////////////////////////////////////////////////////////////////////
8 // 8 //
9 // Version 9 // Version
10 // 10 //
11 11
12 // Let .VER file to select the binary that is being compiled. 12 // Let .VER file to select the binary that is being compiled.
13 #define BINARY_HOST_PLUGIN 1 13 #define BINARY_HOST_PLUGIN 1
14 #define BINARY_ME2ME_HOST 2 14 #define BINARY_HOST_ME2ME 2
15 #define BINARY_SERVICE 3 15 #define BINARY_DAEMON 3
16 #define BINARY_CONTROLLER 4
17 #define BINARY_DESKTOP 5
16 #define BINARY @BINARY@ 18 #define BINARY @BINARY@
17 19
18 #if (BINARY == BINARY_HOST_PLUGIN) 20 #if (BINARY == BINARY_HOST_PLUGIN)
19 #define FILE_DESCRIPTION "@HOST_PLUGIN_FILE_DESCRIPTION@" 21 #define FILE_DESCRIPTION "@HOST_PLUGIN_DESCRIPTION@"
20 #elif (BINARY == BINARY_ME2ME_HOST) 22 #elif (BINARY == BINARY_HOST_ME2ME)
21 #define FILE_DESCRIPTION "@HOST_FILE_DESCRIPTION@" 23 #define FILE_DESCRIPTION "@HOST_ME2ME_DESCRIPTION@"
22 #elif (BINARY == BINARY_SERVICE) 24 #elif (BINARY == BINARY_DAEMON)
23 #define FILE_DESCRIPTION "@HOST_SERVICE_FILE_DESCRIPTION@" 25 #define FILE_DESCRIPTION "@DAEMON_DESCRIPTION@"
24 #elif (BINARY == BINARY_SERVICE_CONTROLLER) 26 #elif (BINARY == BINARY_CONTROLLER)
25 #define FILE_DESCRIPTION "@HOST_CONTROLLER_FILE_DESCRIPTION@" 27 #define FILE_DESCRIPTION "@CONTROLLER_DESCRIPTION@"
28 #elif (BINARY == BINARY_DESKTOP)
29 #define FILE_DESCRIPTION "@DESKTOP_DESCRIPTION@"
26 #endif 30 #endif
27 31
28 VS_VERSION_INFO VERSIONINFO 32 VS_VERSION_INFO VERSIONINFO
29 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 33 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
30 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 34 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
31 FILEFLAGSMASK 0x17L 35 FILEFLAGSMASK 0x17L
32 #ifdef _DEBUG 36 #ifdef _DEBUG
33 FILEFLAGS 0x1L 37 FILEFLAGS 0x1L
34 #else 38 #else
35 FILEFLAGS 0x0L 39 FILEFLAGS 0x0L
(...skipping 19 matching lines...) Expand all
55 #if (BINARY == BINARY_HOST_PLUGIN) 59 #if (BINARY == BINARY_HOST_PLUGIN)
56 VALUE "MIMEType", "@HOST_PLUGIN_MIME_TYPE@" 60 VALUE "MIMEType", "@HOST_PLUGIN_MIME_TYPE@"
57 #endif 61 #endif
58 END 62 END
59 END 63 END
60 BLOCK "VarFileInfo" 64 BLOCK "VarFileInfo"
61 BEGIN 65 BEGIN
62 VALUE "Translation", 0x409, 1200 66 VALUE "Translation", 0x409, 1200
63 END 67 END
64 END 68 END
OLDNEW
« no previous file with comments | « remoting/remoting.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698