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

Unified Diff: chrome/installer/zucchini/zucchini_exe_version.rc.version

Issue 2922273002: Introduce Zucchini in chromium (Closed)
Patch Set: Add zucchini_exe_version dependency in zucchini 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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/zucchini/zucchini_exe_version.rc.version
diff --git a/chrome/installer/zucchini/zucchini_exe_version.rc.version b/chrome/installer/zucchini/zucchini_exe_version.rc.version
new file mode 100644
index 0000000000000000000000000000000000000000..57d03ab77a337c122714265181636d145046db31
--- /dev/null
+++ b/chrome/installer/zucchini/zucchini_exe_version.rc.version
@@ -0,0 +1,46 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <verrsrc.h>
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
+ PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "@COMPANY_FULLNAME@"
+ VALUE "FileDescription", "@PRODUCT_INSTALLER_FULLNAME@"
grt (UTC plus 2) 2017/06/09 08:22:53 PRODUCT_INSTALLER_FULLNAME = "Chrome Installer". I
etiennep 2017/06/09 22:43:05 Done.
+ VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
+ VALUE "InternalName", "setup"
grt (UTC plus 2) 2017/06/09 08:22:53 "zucchini"
etiennep 2017/06/09 22:43:05 oups, hadn't seen those!
+ VALUE "LegalCopyright", "@COPYRIGHT@"
+ VALUE "ProductName", "@PRODUCT_INSTALLER_FULLNAME@"
grt (UTC plus 2) 2017/06/09 08:22:53 "Zucchini"
etiennep 2017/06/09 22:43:05 Done.
+ VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
+ VALUE "CompanyShortName", "@COMPANY_SHORTNAME@"
+ VALUE "ProductShortName", "@PRODUCT_INSTALLER_SHORTNAME@"
grt (UTC plus 2) 2017/06/09 08:22:53 "Zucchini"
etiennep 2017/06/09 22:43:05 Done.
+ VALUE "LastChange", "@LASTCHANGE@"
+ VALUE "Official Build", "@OFFICIAL_BUILD@"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END

Powered by Google App Engine
This is Rietveld 408576698