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