1// Copyright 2020 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// Use the ordinal 1 here, to avoid needing to #include a header file
6// to use the VS_VERSION_INFO macro. This header file changes with different
7// SDK versions which causes headaches building in some environments. The
8// VERSIONINFO resource will always be at index 1.
91 VERSIONINFO
10 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
11 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
12 FILEFLAGSMASK 0x17L
13#ifdef _DEBUG
14 FILEFLAGS 0x1L
15#else
16 FILEFLAGS 0x0L
17#endif
18 FILEOS 0x4L
19 FILETYPE 0x1L
20 FILESUBTYPE 0x0L
21BEGIN
22    BLOCK "StringFileInfo"
23    BEGIN
24        BLOCK "040904b0"
25        BEGIN
26            VALUE "CompanyName", "@COMPANY_FULLNAME@"
27            VALUE "FileDescription", "Google Credential Provider for Windows Extension"
28            VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
29            VALUE "InternalName", "gcpw_extension"
30            VALUE "LegalCopyright", "@COPYRIGHT@"
31            VALUE "ProductName", "Google Credential Provider for Windows Extension"
32            VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
33            VALUE "CompanyShortName", "@COMPANY_SHORTNAME@"
34            VALUE "ProductShortName", "GCPW Extension"
35            VALUE "LastChange", "@LASTCHANGE@"
36            VALUE "Official Build", "@OFFICIAL_BUILD@"
37        END
38    END
39    BLOCK "VarFileInfo"
40    BEGIN
41        VALUE "Translation", 0x409, 1200
42    END
43END