blob: a7be9ad51c3ec6d09d14dfe25e8f68ca3be6a816 [file] [log] [blame]
vanjeff18b144e2010-09-12 06:43:36 +00001## @file
2#
3# Source Level Debug Package.
4#
Jeff Fan4d92c222014-01-10 01:21:14 +00005# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
vanjeff18b144e2010-09-12 06:43:36 +00006#
7# This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution. The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15##
16
17################################################################################
18#
19# Defines Section - statements that will be processed to create a Makefile.
20#
21################################################################################
22[Defines]
vanjeff894c9c62012-04-25 08:03:26 +000023 PLATFORM_NAME = SourceLevelDebugPkg
vanjeff18b144e2010-09-12 06:43:36 +000024 PLATFORM_GUID = 38C85805-883F-4ee8-A854-95B966ED73AA
Jeff Fan4d92c222014-01-10 01:21:14 +000025 PLATFORM_VERSION = 0.86
vanjeff18b144e2010-09-12 06:43:36 +000026 DSC_SPECIFICATION = 0x00010005
vanjeff894c9c62012-04-25 08:03:26 +000027 OUTPUT_DIRECTORY = Build/SourceLevelDebugPkg
vanjeff18b144e2010-09-12 06:43:36 +000028 SUPPORTED_ARCHITECTURES = IA32|X64
29 BUILD_TARGETS = DEBUG|RELEASE
30 SKUID_IDENTIFIER = DEFAULT
31
32[LibraryClasses.common]
vanjeffb422b622013-01-25 02:36:18 +000033 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
mdkinney351ff412011-03-10 22:41:43 +000034 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
vanjeff18b144e2010-09-12 06:43:36 +000035 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
36 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
vanjeff18b144e2010-09-12 06:43:36 +000037 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
vanjeffb422b622013-01-25 02:36:18 +000038 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
39 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
40 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
41 LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
42 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
43 SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
44 PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
45 TimerLib|UefiCpuPkg/Library/SecPeiDxeTimerLibUefiCpu/SecPeiDxeTimerLibUefiCpu.inf
vanjeffd6e1d9c2013-02-04 08:12:45 +000046 ResetSystemLib|MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.inf
niruiyub2fdb172013-03-28 07:02:01 +000047 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
48 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
vanjeffb422b622013-01-25 02:36:18 +000049 PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
50
niruiyub2fdb172013-03-28 07:02:01 +000051!ifdef $(SOURCE_DEBUG_USE_USB)
52 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
53!else
vanjeff18b144e2010-09-12 06:43:36 +000054 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
niruiyub2fdb172013-03-28 07:02:01 +000055!endif
vanjeffb422b622013-01-25 02:36:18 +000056
57[LibraryClasses.common.PEIM]
58 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
59 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
60 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
61 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
62 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
63 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
64
65[LibraryClasses.common.DXE_DRIVER]
66 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
67 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
68 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
69 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
70 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
71 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
72 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
73 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
vanjeff18b144e2010-09-12 06:43:36 +000074
75###################################################################################################
76#
77# Components Section - list of the modules and components that will be processed by compilation
78# tools and the EDK II tools to generate PE32/PE32+/Coff image files.
79#
80# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
81# into firmware volume images. This section is just a list of modules to compile from
82# source into UEFI-compliant binaries.
83# It is the FDF file that contains information on combining binary files into firmware
84# volume images, whose concept is beyond UEFI and is described in PI specification.
85# Binary modules do not need to be listed in this section, as they should be
86# specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
87# Logo (Logo.bmp), and etc.
88# There may also be modules listed in this section that are not required in the FDF file,
89# When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
90# generated for it, but the binary will not be put into any firmware volume.
91#
92###################################################################################################
93
94[Components.common]
95 SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
96 SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
97 SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
98 SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
99 SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
100 SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
vanjeffb422b622013-01-25 02:36:18 +0000101 SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.inf
102 SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf