1 | ## @file
|
---|
2 | # SMM driver instance of SmiHandlerProfile Library.
|
---|
3 | #
|
---|
4 | # This library instance provides real functionality for SmmChildDispatcher module.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = SmmSmiHandlerProfileLib
|
---|
16 | MODULE_UNI_FILE = SmmSmiHandlerProfileLib.uni
|
---|
17 | FILE_GUID = FC38CEAE-FB74-4049-A51C-68F0BA69DA7D
|
---|
18 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = SmiHandlerProfileLib|DXE_SMM_DRIVER
|
---|
21 | CONSTRUCTOR = SmmSmiHandlerProfileLibConstructor
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | SmmSmiHandlerProfileLib.c
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | MdePkg/MdePkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | SmmServicesTableLib
|
---|
38 |
|
---|
39 | [Guids]
|
---|
40 | gSmiHandlerProfileGuid ## CONSUMES ## GUID # Locate protocol
|
---|
41 |
|
---|