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

Side by Side Diff: goopdate/goopdate_version.rc

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months 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
« no previous file with comments | « goopdate/goopdate_unittest.cc ('k') | goopdate/install_manager.h » ('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 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 // This file contains the unlocalized goopdate DLL version resources.
17
18 #include <afxres.h>
19
20 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
21
22 VS_VERSION_INFO VERSIONINFO
23 // Resource Editor does not handle constants from main.scons.
24 #ifndef APSTUDIO_INVOKED
25 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH
26 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_PATCH
27 #endif // APSTUDIO_INVOKED
28 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
29 #if defined _DEBUG && OFFICIAL_BUILD
30 FILEFLAGS VS_FF_DEBUG
31 #elif defined _DEBUG
32 FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD
33 #elif !OFFICIAL_BUILD
34 FILEFLAGS VS_FF_PRIVATEBUILD
35 #else
36 FILEFLAGS 0x0L
37 #endif
38 FILEOS VOS_NT_WINDOWS32
39 FILETYPE VFT_DLL
40 FILESUBTYPE VFT2_UNKNOWN
41 BEGIN
42 BLOCK "StringFileInfo"
43 BEGIN
44 BLOCK "040904b0"
45 BEGIN
46 // Requires constants from mains.scons that cannot be loaded in Resource Editor.
47 #ifndef APSTUDIO_INVOKED
48 VALUE "CompanyName", FULL_COMPANY_NAME_ANSI
49 VALUE "FileDescription", OMAHA_APP_NAME_ANSI
50 VALUE "FileVersion", VERSION_NUMBER_STRING
51 VALUE "InternalName", OMAHA_APP_NAME_ANSI
52 VALUE "LegalCopyright", OMAHA_COPYRIGHT_STRING_ENGLISH
53 VALUE "OriginalFilename", MAIN_DLL_BASE_NAME_ANSI ".dll"
54 VALUE "ProductName", OMAHA_APP_NAME_ANSI
55 VALUE "ProductVersion", VERSION_NUMBER_STRING
56 #ifdef _DEBUG
57 VALUE "Debug", ""
58 #endif
59 #if !OFFICIAL_BUILD
60 VALUE "PrivateBuild", BUILD_NUMBER
61 #endif
62 #else
63 VALUE "_SpecialView",
64 "Most values are not shown in Resource Editor because they "
65 "require build file constants."
66 #endif // APSTUDIO_INVOKED
67 END
68 END
69 BLOCK "VarFileInfo"
70 BEGIN
71 VALUE "Translation", 0x0409, 1200
72 END
73 END
OLDNEW
« no previous file with comments | « goopdate/goopdate_unittest.cc ('k') | goopdate/install_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698