OLD | NEW |
| (Empty) |
1 // Copyright 2007 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 #include <afxres.h> | |
17 | |
18 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |
19 | |
20 VS_VERSION_INFO VERSIONINFO | |
21 // Resource Editor does not handle constants from main.scons. | |
22 #ifndef APSTUDIO_INVOKED | |
23 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
24 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH | |
25 #endif // APSTUDIO_INVOKED | |
26 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | |
27 #if defined _DEBUG && OFFICIAL_BUILD | |
28 FILEFLAGS VS_FF_DEBUG | |
29 #elif defined _DEBUG | |
30 FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD | |
31 #elif !OFFICIAL_BUILD | |
32 FILEFLAGS VS_FF_PRIVATEBUILD | |
33 #else | |
34 FILEFLAGS 0x0L | |
35 #endif | |
36 FILEOS VOS_NT_WINDOWS32 | |
37 FILETYPE VFT_APP | |
38 FILESUBTYPE VFT2_UNKNOWN | |
39 BEGIN | |
40 BLOCK "StringFileInfo" | |
41 BEGIN | |
42 BLOCK "040904b0" | |
43 BEGIN | |
44 // Requires constants from mains.scons that cannot be loaded in Resource Editor. | |
45 #ifndef APSTUDIO_INVOKED | |
46 VALUE "CompanyName", FULL_COMPANY_NAME_ANSI | |
47 VALUE "FileDescription", OMAHA_APP_NAME_ANSI " SaveArguments" | |
48 VALUE "FileVersion", VERSION_NUMBER_STRING | |
49 VALUE "InternalName", OMAHA_APP_NAME_ANSI | |
50 VALUE "LegalCopyright", OMAHA_COPYRIGHT_STRING_ENGLISH | |
51 VALUE "OriginalFilename", "SaveArguments.exe" | |
52 VALUE "ProductName", OMAHA_APP_NAME_ANSI | |
53 VALUE "ProductVersion", VERSION_NUMBER_STRING | |
54 #ifdef _DEBUG | |
55 VALUE "Debug", "" | |
56 #endif | |
57 #if !OFFICIAL_BUILD | |
58 VALUE "PrivateBuild", BUILD_NUMBER | |
59 #endif | |
60 #else | |
61 VALUE "_SpecialView", | |
62 "Most values are not shown in Resource Editor because they " | |
63 "require build file constants." | |
64 #endif // APSTUDIO_INVOKED | |
65 END | |
66 END | |
67 BLOCK "VarFileInfo" | |
68 BEGIN | |
69 VALUE "Translation", 0x0409, 1200 | |
70 END | |
71 END | |
OLD | NEW |