1#/** @file 2# ZLib produces gzip decompression algorithm. 3# 4# It is based on the zlib 1.2.11. 5# LZMA SDK 4.65 was placed in the public domain on 2009-02-03. 6# It was released on the http://www.7-zip.org/sdk.html website. 7# 8# Copyright (c) 2009, Intel Corporation. All rights reserved.<BR> 9# 10# This program and the accompanying materials 11# are licensed and made available under the terms and conditions of the BSD License 12# which accompanies this distribution. The full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php 14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16# 17# 18#**/ 19 20[Defines] 21 INF_VERSION = 0x00010019 22 BASE_NAME = ZLib 23 FILE_GUID = b3fda02c-8720-4256-ad96-f9d8631ab219 24 MODULE_TYPE = BASE 25 VERSION_STRING = 1.0 26 LIBRARY_CLASS = ZLib 27 28# 29# The following information is for reference only and not required by the build tools. 30# 31# VALID_ARCHITECTURES = ARM AARCH64 IA32 X64 IPF EBC 32# 33 34[Sources] 35 adler32.c 36 crc32.c 37 inffast.c 38 inflate.c 39 inftrees.c 40 zutil.c 41 ZLib.c 42 43[Packages] 44 StdLib/StdLib.dec 45 EmbeddedPkg/EmbeddedPkg.dec 46 MdePkg/MdePkg.dec 47 MdeModulePkg/MdeModulePkg.dec 48 49[LibraryClasses] 50 BaseLib 51 BaseMemoryLib 52 MemoryAllocationLib 53 UefiBootServicesTableLib 54 UefiLib 55 UefiRuntimeServicesTableLib 56