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

Side by Side Diff: chrome_frame/chrome_tab_version.rc

Issue 11147012: Generate version resources for Chrome Frame using the same machinery as Chrome itself. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed a few more stale dependencies on the version header Created 8 years, 2 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 | « chrome_frame/chrome_launcher_version.rc ('k') | chrome_frame/npchrome_frame_dll.ver » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "version.h"
2
3 #ifdef APSTUDIO_INVOKED
4 # error Do not open this in the GUI, it will be massacred on save. Do not do it.
5 #endif // APSTUDIO_INVOKED
6
7 /////////////////////////////////////////////////////////////////////////////
8 //
9 // Version
10 //
11
12 1 VERSIONINFO
13 FILEVERSION CHROME_VERSION
14 PRODUCTVERSION CHROME_VERSION
15 FILEFLAGSMASK 0x17L
16 #ifdef _DEBUG
17 FILEFLAGS 0x1L
18 #else
19 FILEFLAGS 0x0L
20 #endif
21 FILEOS 0x4L
22 FILETYPE 0x2L
23 FILESUBTYPE 0x0L
24 BEGIN
25 BLOCK "StringFileInfo"
26 BEGIN
27 // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual) .
28 BLOCK "040904e4"
29 BEGIN
30 VALUE "CompanyName", COMPANY_FULLNAME_STRING
31 VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING
32 VALUE "ProductName", "Google Chrome Frame"
33 VALUE "ProductShortName", "ChromeFrame"
34 VALUE "ProductVersion", CHROME_VERSION_STRING
35 VALUE "FileDescription", "Chrome Frame renders the Web of the future in the browsers of the past. It's like strapping a rocket engine to a minivan."
36 VALUE "FileVersion", CHROME_VERSION_STRING
37 VALUE "InternalName", "Google Chrome Frame"
38 VALUE "LegalCopyright", COPYRIGHT_STRING
39 VALUE "MIMEType", "application/chromeframe"
40 VALUE "FileExtents", "chromeframe"
41 VALUE "FileOpenName", "chromeframe"
42 VALUE "OriginalFilename", "npchrome_frame.dll"
43 VALUE "LastChange", LASTCHANGE_STRING
44 VALUE "Official Build", OFFICIAL_BUILD_STRING
45 END
46 END
47 BLOCK "VarFileInfo"
48 BEGIN
49 // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual) .
50 VALUE "Translation", 0x409, 1252
51 END
52 END
OLDNEW
« no previous file with comments | « chrome_frame/chrome_launcher_version.rc ('k') | chrome_frame/npchrome_frame_dll.ver » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698