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

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

Issue 10829327: [Chromoting] Cleanup branding variables in Chromoting gyp file. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« remoting/remoting.gyp ('K') | « 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_ME2ME_HOST 2
15 #define BINARY_SERVICE 3 15 #define BINARY_SERVICE 3
16 #define BINARY @BINARY@ 16 #define BINARY @BINARY@
17 17
18 #if (BINARY == BINARY_HOST_PLUGIN) 18 #if (BINARY == BINARY_HOST_PLUGIN)
19 #define FILE_DESCRIPTION "@HOST_PLUGIN_FILE_DESCRIPTION@" 19 #define FILE_DESCRIPTION "@HOST_PLUGIN_FILE_DESCRIPTION@"
20 #elif (BINARY == BINARY_ME2ME_HOST) 20 #elif (BINARY == BINARY_ME2ME_HOST)
21 #define FILE_DESCRIPTION "@ME2ME_HOST_FILE_DESCRIPTION@" 21 #define FILE_DESCRIPTION "@HOST_FILE_DESCRIPTION@"
22 #elif (BINARY == BINARY_SERVICE) 22 #elif (BINARY == BINARY_SERVICE)
23 #define FILE_DESCRIPTION "@SERVICE_FILE_DESCRIPTION@" 23 #define FILE_DESCRIPTION "@HOST_SERVICE_FILE_DESCRIPTION@"
24 #elif (BINARY == BINARY_SERVICE_CONTROLLER) 24 #elif (BINARY == BINARY_SERVICE_CONTROLLER)
25 #define FILE_DESCRIPTION "@SERVICE_CONTROLLER_FILE_DESCRIPTION@" 25 #define FILE_DESCRIPTION "@HOST_CONTROLLER_FILE_DESCRIPTION@"
26 #endif 26 #endif
27 27
28 VS_VERSION_INFO VERSIONINFO 28 VS_VERSION_INFO VERSIONINFO
29 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 29 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
30 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 30 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
31 FILEFLAGSMASK 0x17L 31 FILEFLAGSMASK 0x17L
32 #ifdef _DEBUG 32 #ifdef _DEBUG
33 FILEFLAGS 0x1L 33 FILEFLAGS 0x1L
34 #else 34 #else
35 FILEFLAGS 0x0L 35 FILEFLAGS 0x0L
(...skipping 19 matching lines...) Expand all
55 #if (BINARY == BINARY_HOST_PLUGIN) 55 #if (BINARY == BINARY_HOST_PLUGIN)
56 VALUE "MIMEType", "@HOST_PLUGIN_MIME_TYPE@" 56 VALUE "MIMEType", "@HOST_PLUGIN_MIME_TYPE@"
57 #endif 57 #endif
58 END 58 END
59 END 59 END
60 BLOCK "VarFileInfo" 60 BLOCK "VarFileInfo"
61 BEGIN 61 BEGIN
62 VALUE "Translation", 0x409, 1200 62 VALUE "Translation", 0x409, 1200
63 END 63 END
64 END 64 END
OLDNEW
« remoting/remoting.gyp ('K') | « remoting/remoting.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698