1 | ## @file
|
---|
2 | # The DXE driver produces FORM DISPLAY ENGIEN protocol.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2007 - 2014, 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 | #
|
---|
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 = DisplayEngine
|
---|
20 | MODULE_UNI_FILE = DisplayEngine.uni
|
---|
21 | FILE_GUID = E660EA85-058E-4b55-A54B-F02F83A24707
|
---|
22 | MODULE_TYPE = DXE_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | ENTRY_POINT = InitializeDisplayEngine
|
---|
25 | UNLOAD_IMAGE = UnloadDisplayEngine
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | FormDisplayStr.uni
|
---|
34 | FormDisplay.c
|
---|
35 | FormDisplay.h
|
---|
36 | ProcessOptions.c
|
---|
37 | InputHandler.c
|
---|
38 |
|
---|
39 | [Packages]
|
---|
40 | MdePkg/MdePkg.dec
|
---|
41 | MdeModulePkg/MdeModulePkg.dec
|
---|
42 |
|
---|
43 | [LibraryClasses]
|
---|
44 | UefiDriverEntryPoint
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | DebugLib
|
---|
47 | BaseMemoryLib
|
---|
48 | BaseLib
|
---|
49 | PrintLib
|
---|
50 | HiiLib
|
---|
51 | MemoryAllocationLib
|
---|
52 | CustomizedDisplayLib
|
---|
53 |
|
---|
54 | [Protocols]
|
---|
55 | gEdkiiFormDisplayEngineProtocolGuid ## PRODUCES
|
---|
56 | gEdkiiFormBrowserEx2ProtocolGuid ## CONSUMES
|
---|
57 |
|
---|
58 | [Depex]
|
---|
59 | gEfiHiiDatabaseProtocolGuid AND gEfiHiiConfigRoutingProtocolGuid AND gEdkiiFormBrowserEx2ProtocolGuid
|
---|
60 |
|
---|
61 | [FeaturePcd]
|
---|
62 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserGrayOutTextStatement ## CONSUMES
|
---|
63 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowerGrayOutReadOnlyMenu ## CONSUMES
|
---|
64 |
|
---|
65 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
66 | DisplayEngineExtra.uni
|
---|