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 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = HttpUtilitiesDxe
|
---|
15 | FILE_GUID = 22ea234f-e72a-11e4-91f9-28d2447c4829
|
---|
16 | MODULE_TYPE = DXE_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = HttpUtilitiesDxeDriverEntryPoint
|
---|
19 | UNLOAD_IMAGE = HttpUtilitiesDxeUnload
|
---|
20 | MODULE_UNI_FILE = HttpUtilitiesDxe.uni
|
---|
21 |
|
---|
22 | [Packages]
|
---|
23 | MdePkg/MdePkg.dec
|
---|
24 | NetworkPkg/NetworkPkg.dec
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | HttpUtilitiesDxe.h
|
---|
28 | HttpUtilitiesDxe.c
|
---|
29 | HttpUtilitiesProtocol.c
|
---|
30 |
|
---|
31 | [LibraryClasses]
|
---|
32 | UefiDriverEntryPoint
|
---|
33 | UefiBootServicesTableLib
|
---|
34 | MemoryAllocationLib
|
---|
35 | BaseMemoryLib
|
---|
36 | BaseLib
|
---|
37 | UefiLib
|
---|
38 | DebugLib
|
---|
39 | HttpLib
|
---|
40 |
|
---|
41 | [Protocols]
|
---|
42 | gEfiHttpUtilitiesProtocolGuid ## PRODUCES
|
---|
43 |
|
---|
44 | [Depex]
|
---|
45 | TRUE
|
---|
46 |
|
---|
47 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
48 | HttpUtilitiesDxeExtra.uni
|
---|