]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
MdeModulePkg: Update Brotli DecompressLib to the latest v1.0.6
[mirror_edk2.git] / MdeModulePkg / Library / BrotliCustomDecompressLib / BrotliCustomDecompressLib.inf
CommitLineData
841b2590
SB
1## @file\r
2# BrotliCustomDecompressLib produces BROTLI custom decompression algorithm.\r
3#\r
4# It is based on the Brotli v0.5.2.\r
5# Brotli was released on the website https://github.com/google/brotli.\r
6#\r
7# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
8#\r
9# This program and the accompanying materials\r
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = BrotliDecompressLib\r
22 MODULE_UNI_FILE = BrotliDecompressLib.uni\r
23 FILE_GUID = 69EC7DB2-B0DD-493A-963A-C5F330131BAA\r
24 MODULE_TYPE = BASE\r
25 VERSION_STRING = 1.0\r
26 LIBRARY_CLASS = NULL\r
27 CONSTRUCTOR = BrotliDecompressLibConstructor\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64\r
33#\r
34\r
35[Sources]\r
36 GuidedSectionExtraction.c\r
37 BrotliDecompress.c\r
38 BrotliDecompressLibInternal.h\r
39 common/dictionary.c\r
2730470f 40 common/transform.c\r
841b2590
SB
41 dec/bit_reader.c\r
42 dec/decode.c\r
43 dec/huffman.c\r
44 dec/state.c\r
2730470f
LG
45 brotli/decode.h\r
46 brotli/port.h\r
47 brotli/types.h\r
48 common/constants.h\r
49 common/context.h\r
50 common/dictionary.h\r
51 common/platform.h\r
52 common/transform.h\r
53 common/version.h\r
54 dec/bit_reader.h\r
55 dec/huffman.h\r
56 dec/state.h\r
57 dec/prefix.h\r
841b2590
SB
58\r
59[Packages]\r
60 MdePkg/MdePkg.dec\r
61 MdeModulePkg/MdeModulePkg.dec\r
62\r
63[Guids]\r
64 gBrotliCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies BROTLI custom decompress algorithm.\r
65\r
66[LibraryClasses]\r
67 BaseLib\r
68 DebugLib\r
69 BaseMemoryLib\r
70 ExtractGuidedSectionLib\r