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

Side by Side Diff: chrome/installer/zucchini/zucchini_exe_version.rc.version

Issue 2922273002: Introduce Zucchini in chromium (Closed)
Patch Set: add Component in OWNERS file Created 3 years, 6 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
OLDNEW
(Empty)
1 // Copyright 2017 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 /////////////////////////////////////////////////////////////////////////////
8 //
9 // Version
10 //
11
12 VS_VERSION_INFO VERSIONINFO
13 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
14 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
15 FILEFLAGSMASK 0x17L
16 #ifdef _DEBUG
17 FILEFLAGS 0x1L
18 #else
19 FILEFLAGS 0x0L
20 #endif
21 FILEOS 0x4L
22 FILETYPE 0x1L
23 FILESUBTYPE 0x0L
24 BEGIN
25 BLOCK "StringFileInfo"
26 BEGIN
27 BLOCK "040904b0"
28 BEGIN
29 VALUE "CompanyName", "@COMPANY_FULLNAME@"
30 VALUE "FileDescription", "Zucchini"
31 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
32 VALUE "InternalName", "zucchini"
33 VALUE "LegalCopyright", "@COPYRIGHT@"
34 VALUE "ProductName", "Zucchini"
35 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
36 VALUE "CompanyShortName", "@COMPANY_SHORTNAME@"
37 VALUE "ProductShortName", "Zucchini"
38 VALUE "LastChange", "@LASTCHANGE@"
39 VALUE "Official Build", "@OFFICIAL_BUILD@"
40 END
41 END
42 BLOCK "VarFileInfo"
43 BEGIN
44 VALUE "Translation", 0x409, 1200
45 END
46 END
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698