]> git.proxmox.com Git - mirror_edk2.git/blob - SourceLevelDebugPkg/SourceLevelDebugPkg.dsc
Use ResetSystemLib NULL instance to remove dependency on PcAtChipsetPkg from SourceLe...
[mirror_edk2.git] / SourceLevelDebugPkg / SourceLevelDebugPkg.dsc
1 ## @file
2 #
3 # Source Level Debug Package.
4 #
5 # Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
6 #
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]
23 PLATFORM_NAME = SourceLevelDebugPkg
24 PLATFORM_GUID = 38C85805-883F-4ee8-A854-95B966ED73AA
25 PLATFORM_VERSION = 0.85
26 DSC_SPECIFICATION = 0x00010005
27 OUTPUT_DIRECTORY = Build/SourceLevelDebugPkg
28 SUPPORTED_ARCHITECTURES = IA32|X64
29 BUILD_TARGETS = DEBUG|RELEASE
30 SKUID_IDENTIFIER = DEFAULT
31
32 [LibraryClasses.common]
33 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
34 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
35 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
36 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
37 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
38 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
46 ResetSystemLib|MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.inf
47
48 PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
49
50 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
51 #DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
52
53 [LibraryClasses.common.PEIM]
54 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
55 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
56 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
57 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
58 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
59 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
60
61 [LibraryClasses.common.DXE_DRIVER]
62 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
63 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
64 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
65 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
66 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
67 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
68 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
69 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
70
71 ###################################################################################################
72 #
73 # Components Section - list of the modules and components that will be processed by compilation
74 # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
75 #
76 # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
77 # into firmware volume images. This section is just a list of modules to compile from
78 # source into UEFI-compliant binaries.
79 # It is the FDF file that contains information on combining binary files into firmware
80 # volume images, whose concept is beyond UEFI and is described in PI specification.
81 # Binary modules do not need to be listed in this section, as they should be
82 # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
83 # Logo (Logo.bmp), and etc.
84 # There may also be modules listed in this section that are not required in the FDF file,
85 # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
86 # generated for it, but the binary will not be put into any firmware volume.
87 #
88 ###################################################################################################
89
90 [Components.common]
91 SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
92 SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
93 SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
94 SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
95 SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
96 SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
97 SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.inf
98 SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf