2015-08-27 03:07:31 +02:00
|
|
|
## @file
|
|
|
|
# Implementation of EFI Http Utilities Protocol interfaces.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
2016-03-04 23:07:50 +01:00
|
|
|
# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
2015-08-27 03:07:31 +02:00
|
|
|
#
|
2019-04-04 01:06:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2015-08-27 03:07:31 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = HttpUtilitiesDxe
|
|
|
|
FILE_GUID = 22ea234f-e72a-11e4-91f9-28d2447c4829
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = HttpUtilitiesDxeDriverEntryPoint
|
|
|
|
UNLOAD_IMAGE = HttpUtilitiesDxeUnload
|
2015-12-24 03:31:06 +01:00
|
|
|
MODULE_UNI_FILE = HttpUtilitiesDxe.uni
|
2015-08-27 03:07:31 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
HttpUtilitiesDxe.h
|
|
|
|
HttpUtilitiesDxe.c
|
|
|
|
HttpUtilitiesProtocol.c
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseLib
|
|
|
|
UefiLib
|
|
|
|
DebugLib
|
2016-03-04 23:07:50 +01:00
|
|
|
HttpLib
|
2015-08-27 03:07:31 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiHttpUtilitiesProtocolGuid ## PRODUCES
|
|
|
|
|
|
|
|
[Depex]
|
|
|
|
TRUE
|
|
|
|
|
2015-12-24 03:31:06 +01:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
HttpUtilitiesDxeExtra.uni
|