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