]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Library / LzmaCustomDecompressLib / LzmaCustomDecompressLib.inf
1 ## @file
2 # LzmaCustomDecompressLib produces LZMA custom decompression algorithm.
3 #
4 # It is based on the LZMA SDK 18.05.
5 # LZMA SDK 18.05 was placed in the public domain on 2018-04-30.
6 # It was released on the http://www.7-zip.org/sdk.html website.
7 #
8 # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
9 #
10 # SPDX-License-Identifier: BSD-2-Clause-Patent
11 #
12 #
13 ##
14
15 [Defines]
16 INF_VERSION = 0x00010005
17 BASE_NAME = LzmaDecompressLib
18 MODULE_UNI_FILE = LzmaDecompressLib.uni
19 FILE_GUID = 35194660-7421-44ad-9636-e44885f092d1
20 MODULE_TYPE = BASE
21 VERSION_STRING = 1.0
22 LIBRARY_CLASS = NULL
23 CONSTRUCTOR = LzmaDecompressLibConstructor
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 EBC
29 #
30
31 [Sources]
32 LzmaDecompress.c
33 Sdk/C/LzFind.c
34 Sdk/C/LzmaDec.c
35 Sdk/C/7zVersion.h
36 Sdk/C/CpuArch.h
37 Sdk/C/LzFind.h
38 Sdk/C/LzHash.h
39 Sdk/C/LzmaDec.h
40 Sdk/C/7zTypes.h
41 Sdk/C/Precomp.h
42 Sdk/C/Compiler.h
43 GuidedSectionExtraction.c
44 UefiLzma.h
45 LzmaDecompressLibInternal.h
46
47 [Packages]
48 MdePkg/MdePkg.dec
49 MdeModulePkg/MdeModulePkg.dec
50
51 [Guids]
52 gLzmaCustomDecompressGuid ## PRODUCES ## UNDEFINED # specifies LZMA custom decompress algorithm.
53
54 [LibraryClasses]
55 BaseLib
56 DebugLib
57 BaseMemoryLib
58 ExtractGuidedSectionLib
59