]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[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
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
32 BrotliDecompress.c\r
33 BrotliDecompressLibInternal.h\r
34 common/dictionary.c\r
2730470f 35 common/transform.c\r
841b2590
SB
36 dec/bit_reader.c\r
37 dec/decode.c\r
38 dec/huffman.c\r
39 dec/state.c\r
2730470f
LG
40 brotli/decode.h\r
41 brotli/port.h\r
42 brotli/types.h\r
43 common/constants.h\r
44 common/context.h\r
45 common/dictionary.h\r
46 common/platform.h\r
47 common/transform.h\r
48 common/version.h\r
49 dec/bit_reader.h\r
50 dec/huffman.h\r
51 dec/state.h\r
52 dec/prefix.h\r
841b2590
SB
53\r
54[Packages]\r
55 MdePkg/MdePkg.dec\r
56 MdeModulePkg/MdeModulePkg.dec\r
57\r
58[Guids]\r
59 gBrotliCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies BROTLI custom decompress algorithm.\r
60\r
61[LibraryClasses]\r
62 BaseLib\r
63 DebugLib\r
64 BaseMemoryLib\r
65 ExtractGuidedSectionLib\r