vanjeff | 18b144e | 2010-09-12 06:43:36 +0000 | [diff] [blame] | 1 | ## @file
|
| 2 | #
|
| 3 | # Source Level Debug Package.
|
| 4 | #
|
| 5 | # Copyright (c) 2010, 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 = SourceLevelDebugtPkg
|
| 24 | PLATFORM_GUID = 38C85805-883F-4ee8-A854-95B966ED73AA
|
| 25 | PLATFORM_VERSION = 0.70
|
| 26 | DSC_SPECIFICATION = 0x00010005
|
| 27 | OUTPUT_DIRECTORY = Build/SourceLevelDebugtPkg
|
| 28 | SUPPORTED_ARCHITECTURES = IA32|X64
|
| 29 | BUILD_TARGETS = DEBUG|RELEASE
|
| 30 | SKUID_IDENTIFIER = DEFAULT
|
| 31 |
|
| 32 | [LibraryClasses.common]
|
| 33 | DebugLib|MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf
|
| 34 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
| 35 | BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
|
| 36 | TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
|
| 37 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 38 | DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
|
| 39 |
|
| 40 | ###################################################################################################
|
| 41 | #
|
| 42 | # Components Section - list of the modules and components that will be processed by compilation
|
| 43 | # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
|
| 44 | #
|
| 45 | # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
|
| 46 | # into firmware volume images. This section is just a list of modules to compile from
|
| 47 | # source into UEFI-compliant binaries.
|
| 48 | # It is the FDF file that contains information on combining binary files into firmware
|
| 49 | # volume images, whose concept is beyond UEFI and is described in PI specification.
|
| 50 | # Binary modules do not need to be listed in this section, as they should be
|
| 51 | # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
|
| 52 | # Logo (Logo.bmp), and etc.
|
| 53 | # There may also be modules listed in this section that are not required in the FDF file,
|
| 54 | # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
|
| 55 | # generated for it, but the binary will not be put into any firmware volume.
|
| 56 | #
|
| 57 | ###################################################################################################
|
| 58 |
|
| 59 | [Components.common]
|
| 60 | SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
|
| 61 | SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
|
| 62 | SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
|
| 63 | SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
|
| 64 | SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
| 65 | SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
|
| 66 |
|