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

Side by Side Diff: chrome/installer/mini_installer/mini_installer_exe_version.rc.version

Issue 8761013: Remove the #include of verrsrc.h from mini_installer_version.rc.version. This makes building mini... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | « no previous file | 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 ///////////////////////////////////////////////////////////////////////////// 1 /////////////////////////////////////////////////////////////////////////////
2 // 2 //
3 // Version 3 // Version
4 // 4 //
5 #include "verrsrc.h"
6 5
7 VS_VERSION_INFO VERSIONINFO 6 // Use the ordinal 1 here, to avoid needing to #include a header file
7 // to use the VS_VERSION_INFO macro. This header file changes with different
8 // SDK versions which causes headaches building in some environments. The
9 // VERSIONINFO resource will always be at index 1.
10 1 VERSIONINFO
8 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 11 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
9 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 12 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
10 FILEFLAGSMASK 0x17L 13 FILEFLAGSMASK 0x17L
11 #ifdef _DEBUG 14 #ifdef _DEBUG
12 FILEFLAGS 0x1L 15 FILEFLAGS 0x1L
13 #else 16 #else
14 FILEFLAGS 0x0L 17 FILEFLAGS 0x0L
15 #endif 18 #endif
16 FILEOS 0x4L 19 FILEOS 0x4L
17 FILETYPE 0x1L 20 FILETYPE 0x1L
(...skipping 14 matching lines...) Expand all
32 VALUE "ProductShortName", "@PRODUCT_SHORTNAME@" 35 VALUE "ProductShortName", "@PRODUCT_SHORTNAME@"
33 VALUE "LastChange", "@LASTCHANGE@" 36 VALUE "LastChange", "@LASTCHANGE@"
34 VALUE "Official Build", "@OFFICIAL_BUILD@" 37 VALUE "Official Build", "@OFFICIAL_BUILD@"
35 END 38 END
36 END 39 END
37 BLOCK "VarFileInfo" 40 BLOCK "VarFileInfo"
38 BEGIN 41 BEGIN
39 VALUE "Translation", 0x409, 1200 42 VALUE "Translation", 0x409, 1200
40 END 43 END
41 END 44 END
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698