2010-09-14 13:18:09 +08:00
|
|
|
## @file
|
2009-11-10 07:33:11 +08:00
|
|
|
# Library used for sorting routines.
|
|
|
|
#
|
2015-01-22 10:02:08 +08:00
|
|
|
# Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved. <BR>
|
2009-11-10 07:33:11 +08:00
|
|
|
#
|
2010-01-26 04:05:08 +08:00
|
|
|
# This program and the accompanying materials
|
2009-11-10 07:33:11 +08:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 07:58:38 +08:00
|
|
|
##
|
2009-11-10 07:33:11 +08:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010006
|
|
|
|
BASE_NAME = UefiSortLib
|
2015-08-28 10:46:46 +08:00
|
|
|
MODULE_UNI_FILE = UefiSortLib.uni
|
2009-11-10 07:33:11 +08:00
|
|
|
FILE_GUID = 4264A823-45A3-42db-B92C-AA078555CBD3
|
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2014-09-03 17:03:10 +08:00
|
|
|
LIBRARY_CLASS = SortLib|UEFI_APPLICATION UEFI_DRIVER UEFI_DRIVER DXE_RUNTIME_DRIVER DXE_DRIVER
|
2009-11-10 07:33:11 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-09-14 13:18:09 +08:00
|
|
|
[Sources.common]
|
2009-11-10 07:33:11 +08:00
|
|
|
UefiSortLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2015-01-13 09:04:07 +08:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2009-11-10 07:33:11 +08:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
UefiBootServicesTableLib
|
2013-07-26 11:14:08 +08:00
|
|
|
DevicePathLib
|
2009-11-10 07:33:11 +08:00
|
|
|
|
|
|
|
[Protocols]
|
2017-09-25 19:06:24 +08:00
|
|
|
gEfiUnicodeCollation2ProtocolGuid ## SOMETIMES_CONSUMES
|
2015-01-22 10:02:08 +08:00
|
|
|
gEfiDevicePathProtocolGuid ## CONSUMES
|
2009-11-10 07:33:11 +08:00
|
|
|
|