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

Side by Side 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 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/app/chrome_dll.rc ('k') | chrome/app/chrome_dll_version.rc.version » ('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 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <verrsrc.h>
6
7 #include "version.h"
8
9 VS_VERSION_INFO VERSIONINFO
10 FILEVERSION CHROME_VERSION
11 PRODUCTVERSION CHROME_VERSION
12 FILEFLAGSMASK 0x17L
13 #ifdef _DEBUG
14 FILEFLAGS 0x1L
15 #else
16 FILEFLAGS 0x0L
17 #endif
18 FILEOS 0x4L
19 FILETYPE 0x1L
20 FILESUBTYPE 0x0L
21 BEGIN
22 BLOCK "StringFileInfo"
23 BEGIN
24 BLOCK "040904b0"
25 BEGIN
26 VALUE "CompanyName", COMPANY_FULLNAME_STRING
27 VALUE "FileDescription", PRODUCT_FULLNAME_STRING
28 VALUE "FileVersion", CHROME_VERSION_STRING
29 VALUE "InternalName", "chrome_dll"
30 VALUE "LegalCopyright", COPYRIGHT_STRING
31 VALUE "OriginalFilename", "chrome.dll"
32 VALUE "ProductName", PRODUCT_FULLNAME_STRING
33 VALUE "ProductVersion", CHROME_VERSION_STRING
34 VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING
35 VALUE "ProductShortName", PRODUCT_SHORTNAME_STRING
36 VALUE "LastChange", LASTCHANGE_STRING
37 VALUE "Official Build", OFFICIAL_BUILD_STRING
38 END
39 END
40 BLOCK "VarFileInfo"
41 BEGIN
42 VALUE "Translation", 0x409, 1200
43 END
44 END
OLDNEW
« 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