68 lines
2.2 KiB
INI
68 lines
2.2 KiB
INI
## @file
|
|
# Instance of Progress Bar Services Library.
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2021, Insyde Software Corp. All Rights Reserved.
|
|
#*
|
|
#* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
#* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
#* any part of this publication in any form, by any means, without the prior
|
|
#* written permission of Insyde Software Corporation.
|
|
#*
|
|
#******************************************************************************
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = ProgressBarLib
|
|
FILE_GUID = ADD2881B-512A-49bc-B24F-FB5F6FEA5517
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = ProgressBarLib
|
|
|
|
[Sources]
|
|
ProgressBarLib.c
|
|
|
|
[Packages]
|
|
$(PROJECT_PKG)/Project.dec
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
$(CHIPSET_PKG)/$(CHIPSET_PKG).dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
UefiLib
|
|
PcdLib
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
PrintLib
|
|
UefiBootServicesTableLib
|
|
DxeServicesLib
|
|
PrintStrToImageLib
|
|
|
|
[Protocols]
|
|
gEfiGraphicsOutputProtocolGuid
|
|
gEfiTgaDecoderProtocolGuid
|
|
|
|
[Guids]
|
|
|
|
[Pcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressBarHorizontalPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressBarVerticalPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressBarWidthPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressCompletionHorizontalPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressCompletionVerticalPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressCompletionFontSizePercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressCompletionForegroundColorValue
|
|
gL05ServicesTokenSpaceGuid.PcdL05ProgressCompletionBackgroundColorValue
|
|
gL05ServicesTokenSpaceGuid.PcdL05BiosUpdateUiExtendFwUpdateFlag
|
|
gL05ServicesTokenSpaceGuid.PcdL05BiosUpdateUiExtendFwUpdateUsedPercent
|
|
gL05ServicesTokenSpaceGuid.PcdL05BiosUpdateUiExtendFwUpdateStartFlag
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|