]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
MdeModulePkg: Add Brotli algorithm decompression library
[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
40 dec/bit_reader.c\r
41 dec/decode.c\r
42 dec/huffman.c\r
43 dec/state.c\r
44\r
45[Packages]\r
46 MdePkg/MdePkg.dec\r
47 MdeModulePkg/MdeModulePkg.dec\r
48\r
49[Guids]\r
50 gBrotliCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies BROTLI custom decompress algorithm.\r
51\r
52[LibraryClasses]\r
53 BaseLib\r
54 DebugLib\r
55 BaseMemoryLib\r
56 ExtractGuidedSectionLib\r