Last change
on this file was 80721, checked in by vboxsync, 6 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Performance library instance used in DXE phase.
|
---|
3 | #
|
---|
4 | # This library instance provides infrastructure for DXE phase drivers to log performance
|
---|
5 | # data. It consumes PerformanceEx or Performance Protocol published by DxeCorePerformanceLib
|
---|
6 | # to log performance data. If both PerformanceEx and Performance Protocol are not available,
|
---|
7 | # it does not log any performance information.
|
---|
8 | #
|
---|
9 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = DxePerformanceLib
|
---|
17 | MODULE_UNI_FILE = DxePerformanceLib.uni
|
---|
18 | FILE_GUID = 8B8B4CCC-65FC-41a5-8067-308B8E42CCF2
|
---|
19 | MODULE_TYPE = DXE_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = PerformanceLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | DxePerformanceLib.c
|
---|
31 |
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 | MdeModulePkg/MdeModulePkg.dec
|
---|
36 |
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | PcdLib
|
---|
40 | UefiBootServicesTableLib
|
---|
41 | DebugLib
|
---|
42 |
|
---|
43 |
|
---|
44 | [Guids]
|
---|
45 | gEdkiiPerformanceMeasurementProtocolGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Locate protocol
|
---|
46 |
|
---|
47 |
|
---|
48 | [Pcd]
|
---|
49 | gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask ## CONSUMES
|
---|
50 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.