]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
MdeModulePkg/BrotliCustomDecompressLib: Make brotli a submodule
[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
58802e02 7# Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>\r
841b2590 8#\r
9d510e61 9# SPDX-License-Identifier: BSD-2-Clause-Patent\r
841b2590
SB
10#\r
11#\r
12##\r
13\r
14[Defines]\r
15 INF_VERSION = 0x00010005\r
16 BASE_NAME = BrotliDecompressLib\r
17 MODULE_UNI_FILE = BrotliDecompressLib.uni\r
18 FILE_GUID = 69EC7DB2-B0DD-493A-963A-C5F330131BAA\r
19 MODULE_TYPE = BASE\r
20 VERSION_STRING = 1.0\r
21 LIBRARY_CLASS = NULL\r
22 CONSTRUCTOR = BrotliDecompressLibConstructor\r
23\r
24#\r
25# The following information is for reference only and not required by the build tools.\r
26#\r
27# VALID_ARCHITECTURES = IA32 X64\r
28#\r
29\r
30[Sources]\r
31 GuidedSectionExtraction.c\r
58802e02
SZ
32 BrotliDecUefiSupport.c\r
33 BrotliDecUefiSupport.h\r
841b2590
SB
34 BrotliDecompress.c\r
35 BrotliDecompressLibInternal.h\r
58802e02
SZ
36 # Wrapper header files start #\r
37 stddef.h\r
38 stdint.h\r
39 stdlib.h\r
40 string.h\r
41 # Wrapper header files end #\r
42 brotli/c/common/dictionary.c\r
43 brotli/c/common/transform.c\r
44 brotli/c/dec/bit_reader.c\r
45 brotli/c/dec/decode.c\r
46 brotli/c/dec/huffman.c\r
47 brotli/c/dec/state.c\r
48 brotli/c/include/brotli/decode.h\r
49 brotli/c/include/brotli/port.h\r
50 brotli/c/include/brotli/types.h\r
51 brotli/c/common/constants.h\r
52 brotli/c/common/context.h\r
53 brotli/c/common/dictionary.h\r
54 brotli/c/common/platform.h\r
55 brotli/c/common/transform.h\r
56 brotli/c/common/version.h\r
57 brotli/c/dec/bit_reader.h\r
58 brotli/c/dec/huffman.h\r
59 brotli/c/dec/state.h\r
60 brotli/c/dec/prefix.h\r
841b2590
SB
61\r
62[Packages]\r
63 MdePkg/MdePkg.dec\r
64 MdeModulePkg/MdeModulePkg.dec\r
65\r
66[Guids]\r
67 gBrotliCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies BROTLI custom decompress algorithm.\r
68\r
69[LibraryClasses]\r
70 BaseLib\r
71 DebugLib\r
72 BaseMemoryLib\r
73 ExtractGuidedSectionLib\r