]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
1) Clean up the INF and add in comment to describe the surface area of modules
[mirror_edk2.git] / MdeModulePkg / Library / UefiHiiLib / UefiHiiLib.inf
1 #/** @file
2 #
3 # Instance of HII Library using DXE protocols and services.
4 #
5 # HII Library implementation that uses EFI Hii Database Protocol and EFI Hii String Protocol.
6 #
7 # Copyright (c) 2006 - 2008, Intel Corporation
8 #
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 #
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 = 0x00010005
22 BASE_NAME = UefiHiiLib
23 FILE_GUID = 3143687A-7C80-404e-B5FE-2D88980E1B1C
24 MODULE_TYPE = UEFI_DRIVER
25 VERSION_STRING = 1.0
26 LIBRARY_CLASS = HiiLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
27 EFI_SPECIFICATION_VERSION = 0x0002000A
28 CONSTRUCTOR = HiiLibConstructor
29
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32 #
33
34 [Sources.common]
35 HiiLib.c
36 HiiString.c
37 HiiLanguage.c
38 InternalHiiLib.h
39
40 [Packages]
41 MdePkg/MdePkg.dec
42 MdeModulePkg/MdeModulePkg.dec
43
44 [LibraryClasses]
45 MemoryAllocationLib
46 BaseMemoryLib
47 BaseLib
48 DebugLib
49 UefiBootServicesTableLib
50 DevicePathLib
51 UefiLib
52 PcdLib
53 UefiRuntimeServicesTableLib
54
55 [Protocols]
56 gEfiHiiDatabaseProtocolGuid ## CONSUMES
57 gEfiHiiStringProtocolGuid ## CONSUMES
58 gEfiDevicePathProtocolGuid ## CONSUMES
59
60 [Pcd]
61 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
62
63 [Guids]
64 gEfiGlobalVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"PlatformLang"
65
66 [Depex]
67 gEfiHiiDatabaseProtocolGuid AND
68 gEfiHiiStringProtocolGuid
69