OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 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 #ifdef APSTUDIO_INVOKED | |
6 # error Do not open this in the GUI, it will be massacred on save. Do not do it. | |
7 #endif // APSTUDIO_INVOKED | |
8 | |
9 ///////////////////////////////////////////////////////////////////////////// | |
10 // | |
11 // Version | |
12 // | |
13 | |
14 1 VERSIONINFO | |
15 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ | |
16 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ | |
17 FILEFLAGSMASK 0x17L | |
18 #ifdef _DEBUG | |
19 FILEFLAGS 0x1L | |
20 #else | |
21 FILEFLAGS 0x0L | |
22 #endif | |
23 FILEOS 0x4L | |
24 FILETYPE 0x2L | |
25 FILESUBTYPE 0x0L | |
26 BEGIN | |
27 BLOCK "StringFileInfo" | |
28 BEGIN | |
29 // Note that Firefox 3.0 requires charset 04e4 (multi-lingual). | |
30 BLOCK "040904e4" | |
31 BEGIN | |
32 VALUE "CompanyName", "@COMPANY_FULLNAME@" | |
33 VALUE "FileDescription", "@PRODUCT_DESCRIPTION@" | |
34 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" | |
35 VALUE "InternalName", "@INTERNAL_NAME@" | |
36 VALUE "LegalCopyright", "@COPYRIGHT@" | |
37 VALUE "OriginalFilename", "@ORIGINAL_FILENAME@" | |
38 VALUE "ProductName", "@PRODUCT_FULLNAME@" | |
39 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" | |
40 VALUE "CompanyShortName", "@COMPANY_SHORTNAME@" | |
41 VALUE "ProductShortName", "@PRODUCT_SHORTNAME@" | |
42 VALUE "LastChange", "@LASTCHANGE@" | |
43 VALUE "Official Build", "@OFFICIAL_BUILD@" | |
44 VALUE "MIMEType", "application/chromeframe" | |
45 VALUE "FileExtents", "chromeframe" | |
46 VALUE "FileOpenName", "chromeframe" | |
47 END | |
48 END | |
49 BLOCK "VarFileInfo" | |
50 BEGIN | |
51 // Note that Firefox 3.0 requires charset 1252 (multi-lingual). | |
52 VALUE "Translation", 0x409, 1252 | |
53 END | |
54 END | |
OLD | NEW |