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

Unified Diff: chrome/app/chrome_dll_version.rc

Issue 5360002: Use BRANDING for IE CEEE. Simplify chrome_dll_version handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove spurious '33' from .gyp file. Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/chrome_dll.rc ('k') | chrome/app/chrome_dll_version.rc.version » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_dll_version.rc
diff --git a/chrome/app/chrome_dll_version.rc b/chrome/app/chrome_dll_version.rc
new file mode 100644
index 0000000000000000000000000000000000000000..2efc9939cbf925049dc1b4e4a20caa63f77b0e4c
--- /dev/null
+++ b/chrome/app/chrome_dll_version.rc
@@ -0,0 +1,44 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <verrsrc.h>
+
+#include "version.h"
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION CHROME_VERSION
+ PRODUCTVERSION CHROME_VERSION
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", COMPANY_FULLNAME_STRING
+ VALUE "FileDescription", PRODUCT_FULLNAME_STRING
+ VALUE "FileVersion", CHROME_VERSION_STRING
+ VALUE "InternalName", "chrome_dll"
+ VALUE "LegalCopyright", COPYRIGHT_STRING
+ VALUE "OriginalFilename", "chrome.dll"
+ VALUE "ProductName", PRODUCT_FULLNAME_STRING
+ VALUE "ProductVersion", CHROME_VERSION_STRING
+ VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING
+ VALUE "ProductShortName", PRODUCT_SHORTNAME_STRING
+ VALUE "LastChange", LASTCHANGE_STRING
+ VALUE "Official Build", OFFICIAL_BUILD_STRING
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END
« no previous file with comments | « chrome/app/chrome_dll.rc ('k') | chrome/app/chrome_dll_version.rc.version » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698