OLD | NEW |
| (Empty) |
1 // Copyright 2007-2010 Google Inc. | |
2 // | |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 // you may not use this file except in compliance with the License. | |
5 // You may obtain a copy of the License at | |
6 // | |
7 // http://www.apache.org/licenses/LICENSE-2.0 | |
8 // | |
9 // Unless required by applicable law or agreed to in writing, software | |
10 // distributed under the License is distributed on an "AS IS" BASIS, | |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 // See the License for the specific language governing permissions and | |
13 // limitations under the License. | |
14 // ======================================================================== | |
15 // | |
16 // This file contains the unlocalized metainstaller resources. | |
17 | |
18 #include <winres.h> | |
19 #include <winresrc.h> | |
20 #include <afxres.h> | |
21 #include "resource.h" | |
22 | |
23 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |
24 | |
25 IDI_APP ICON "mi.ico" | |
26 | |
27 VS_VERSION_INFO VERSIONINFO | |
28 // Resource Editor does not handle constants from main.scons. | |
29 #ifndef APSTUDIO_INVOKED | |
30 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
31 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
32 #endif // APSTUDIO_INVOKED | |
33 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | |
34 #if defined _DEBUG && OFFICIAL_BUILD | |
35 FILEFLAGS VS_FF_DEBUG | |
36 #elif defined _DEBUG | |
37 FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD | |
38 #elif !OFFICIAL_BUILD | |
39 FILEFLAGS VS_FF_PRIVATEBUILD | |
40 #else | |
41 FILEFLAGS 0x0L | |
42 #endif | |
43 FILEOS VOS_NT_WINDOWS32 | |
44 FILETYPE VFT_APP | |
45 FILESUBTYPE VFT2_UNKNOWN | |
46 BEGIN | |
47 BLOCK "StringFileInfo" | |
48 BEGIN | |
49 BLOCK "040904b0" | |
50 BEGIN | |
51 // Requires constants from mains.scons that cannot be loaded in Resource Editor. | |
52 #ifndef APSTUDIO_INVOKED | |
53 VALUE "CompanyName", FULL_COMPANY_NAME_ANSI | |
54 VALUE "FileDescription", OMAHA_APP_NAME_ANSI " Setup" | |
55 VALUE "FileVersion", VERSION_NUMBER_STRING | |
56 VALUE "InternalName", OMAHA_APP_NAME_ANSI " Setup" | |
57 VALUE "LegalCopyright", OMAHA_COPYRIGHT_STRING_ENGLISH | |
58 VALUE "OriginalFilename", MAIN_EXE_BASE_NAME_ANSI "Setup.exe" | |
59 VALUE "ProductName", OMAHA_APP_NAME_ANSI | |
60 VALUE "ProductVersion", VERSION_NUMBER_STRING | |
61 VALUE "LanguageId", LANGUAGE_STRING | |
62 #ifdef _DEBUG | |
63 VALUE "Debug", "" | |
64 #endif | |
65 #if !OFFICIAL_BUILD | |
66 VALUE "PrivateBuild", BUILD_NUMBER | |
67 #endif | |
68 #else | |
69 VALUE "_SpecialView", | |
70 "Most values are not shown in Resource Editor because they " | |
71 "require build file constants." | |
72 #endif // APSTUDIO_INVOKED | |
73 END | |
74 END | |
75 BLOCK "VarFileInfo" | |
76 BEGIN | |
77 VALUE "Translation", 0x0409, 1200 | |
78 END | |
79 END | |
80 | |
81 // Special external requirement. | |
82 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | |
83 #define IDR_GOOGLEUPDATE 1 | |
84 IDR_GOOGLEUPDATE GOOGLEUPDATE { 1L } | |
OLD | NEW |