1 | ## @file
|
---|
2 | # Customize display library used by display engine.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2013 - 2015, 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 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 | #
|
---|
13 | #
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = CustomizedDisplayLib
|
---|
18 | MODULE_UNI_FILE = CustomizedDisplayLibModStrs.uni
|
---|
19 | FILE_GUID = 80B92017-EC64-4923-938D-94FAEE85832E
|
---|
20 | MODULE_TYPE = DXE_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | LIBRARY_CLASS = CustomizedDisplayLib|DXE_DRIVER UEFI_APPLICATION
|
---|
23 | CONSTRUCTOR = CustomizedDisplayLibConstructor
|
---|
24 | DESTRUCTOR = CustomizedDisplayLibDestructor
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | CustomizedDisplayLib.c
|
---|
33 | Colors.h
|
---|
34 | CustomizedDisplayLibInternal.h
|
---|
35 | CustomizedDisplayLibInternal.c
|
---|
36 | CustomizedDisplayLib.uni
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | MemoryAllocationLib
|
---|
44 | BaseLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiDriverEntryPoint
|
---|
47 | UefiRuntimeServicesTableLib
|
---|
48 | BaseMemoryLib
|
---|
49 | DebugLib
|
---|
50 | PrintLib
|
---|
51 | HiiLib
|
---|
52 | DevicePathLib
|
---|
53 | PcdLib
|
---|
54 |
|
---|
55 | [Guids]
|
---|
56 | gEfiIfrTianoGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 |
|
---|
60 | [Pcd]
|
---|
61 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserSubtitleTextColor ## CONSUMES
|
---|
62 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldTextColor ## CONSUMES
|
---|
63 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldTextHighlightColor ## CONSUMES
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldBackgroundHighlightColor ## CONSUMES
|
---|
65 | gEfiMdeModulePkgTokenSpaceGuid.PcdFrontPageFormSetGuid ## CONSUMES |
---|