diff options
author | mad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 20:41:38 +0000 |
---|---|---|
committer | mad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 20:41:38 +0000 |
commit | 4d91cbc7507d85971368202326bcb58531374a8d (patch) | |
tree | 27e562b041ec74fa21b2a479ab7f358bdb68c984 /chrome_frame/chrome_tab_version.rc | |
parent | 4ae3d4e71fcd94412d9957a0be05a3479e332b8d (diff) | |
download | chromium_src-4d91cbc7507d85971368202326bcb58531374a8d.zip chromium_src-4d91cbc7507d85971368202326bcb58531374a8d.tar.gz chromium_src-4d91cbc7507d85971368202326bcb58531374a8d.tar.bz2 |
Committing for jeffbailey.
Excerpt from: http://codereview.chromium.org/1991004/show
----------------
Put version information into header file for easy consumption by RC files.
RC files can use an #include to pull in this header, rather than being each
dynamically generated.
BUG=none
TEST=none
----------------
Review URL: http://codereview.chromium.org/2020003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46736 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_tab_version.rc')
-rw-r--r-- | chrome_frame/chrome_tab_version.rc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/chrome_frame/chrome_tab_version.rc b/chrome_frame/chrome_tab_version.rc new file mode 100644 index 0000000..e9d38a1 --- /dev/null +++ b/chrome_frame/chrome_tab_version.rc @@ -0,0 +1,52 @@ +#include "version.h" + +#ifdef APSTUDIO_INVOKED +# error Don't open this in the GUI, it'll be massacred on save. +#endif // APSTUDIO_INVOKED + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION CHROME_VERSION + PRODUCTVERSION CHROME_VERSION + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual). + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", COMPANY_FULLNAME_STRING + VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING + VALUE "ProductName", "Google Chrome Frame" + VALUE "ProductShortName", "ChromeFrame" + VALUE "ProductVersion", CHROME_VERSION_STRING + 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." + VALUE "FileVersion", CHROME_VERSION_STRING + VALUE "InternalName", "Google Chrome Frame" + VALUE "LegalCopyright", COPYRIGHT_STRING + VALUE "MIMEType", "application/chromeframe" + VALUE "FileExtents", "chromeframe" + VALUE "FileOpenName", "chromeframe" + VALUE "OriginalFilename", "npchrome_frame.dll" + VALUE "LastChange", LASTCHANGE_STRING + VALUE "Official Build", OFFICIAL_BUILD_STRING + END + END + BLOCK "VarFileInfo" + BEGIN + // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual). + VALUE "Translation", 0x409, 1252 + END +END |