]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
MdeModulePkg: Update Brotli DecompressLib to the latest v1.0.6
[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 common/transform.c
41 dec/bit_reader.c
42 dec/decode.c
43 dec/huffman.c
44 dec/state.c
45 brotli/decode.h
46 brotli/port.h
47 brotli/types.h
48 common/constants.h
49 common/context.h
50 common/dictionary.h
51 common/platform.h
52 common/transform.h
53 common/version.h
54 dec/bit_reader.h
55 dec/huffman.h
56 dec/state.h
57 dec/prefix.h
58
59 [Packages]
60 MdePkg/MdePkg.dec
61 MdeModulePkg/MdeModulePkg.dec
62
63 [Guids]
64 gBrotliCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies BROTLI custom decompress algorithm.
65
66 [LibraryClasses]
67 BaseLib
68 DebugLib
69 BaseMemoryLib
70 ExtractGuidedSectionLib