1## @file 2# Implementation of EFI Http Utilities Protocol interfaces. 3# 4# Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php. 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = HttpUtilitiesDxe 19 FILE_GUID = 22ea234f-e72a-11e4-91f9-28d2447c4829 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = HttpUtilitiesDxeDriverEntryPoint 23 UNLOAD_IMAGE = HttpUtilitiesDxeUnload 24 MODULE_UNI_FILE = HttpUtilitiesDxe.uni 25 26[Packages] 27 MdePkg/MdePkg.dec 28 MdeModulePkg/MdeModulePkg.dec 29 30[Sources] 31 HttpUtilitiesDxe.h 32 HttpUtilitiesDxe.c 33 HttpUtilitiesImpl.c 34 HttpUtilitiesProtocol.c 35 36[LibraryClasses] 37 UefiDriverEntryPoint 38 UefiBootServicesTableLib 39 MemoryAllocationLib 40 BaseMemoryLib 41 BaseLib 42 UefiLib 43 DebugLib 44 45[Protocols] 46 gEfiHttpUtilitiesProtocolGuid ## PRODUCES 47 48[Depex] 49 TRUE 50 51[UserExtensions.TianoCore."ExtraFiles"] 52 HttpUtilitiesDxeExtra.uni 53