1 #/** @file 2 # Null instance of Debug Agent Library with empty functions. 3 # 4 # Copyright (c) 2010, Intel Corporation. All rights reserved.<BR> 5 # 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions of the BSD License 8 # which accompanies this distribution. The full text of the license may be found at 9 # http://opensource.org/licenses/bsd-license.php 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 # 14 #**/ 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = GdbDebugAgent 19 FILE_GUID = b9f10c17-6ca0-40b5-9b44-6253cfc7d24b 20 MODULE_TYPE = BASE 21 VERSION_STRING = 1.0 22 LIBRARY_CLASS = DebugAgentLib 23 24 # 25 # The following information is for reference only and not required by the build tools. 26 # 27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 28 # 29 30 [Sources.common] 31 GdbDebugAgent.c 32 33 [Sources.arm] 34 Arm/Processor.c 35 Arm/ExceptionSupport.ARMv6.S 36 Arm/ExceptionSupport.ARMv6.asm 37 38 [Sources.X64] 39 Ia32/Processor.c 40 41 [Sources.Ia32] 42 X64/Processor.c 43 44 45 [Packages] 46 MdePkg/MdePkg.dec 47 MdeModulePkg/MdeModulePkg.dec 48 EmbeddedPkg/EmbeddedPkg.dec 49 50 [Packages.arm] 51 ArmPkg/ArmPkg.dec 52 53 [LibraryClasses] 54 BaseLib 55 DebugLib 56 BaseMemoryLib 57 PcdLib 58 GdbSerialLib 59 CacheMaintenanceLib 60 DebugAgentTimerLib 61 62 [FeaturePcd.common] 63 gEmbeddedTokenSpaceGuid.PcdGdbSerial 64 65 [FixedPcd.common] 66 gEmbeddedTokenSpaceGuid.PcdGdbMaxPacketRetryCount 67 gEmbeddedTokenSpaceGuid.PcdGdbTimerPeriodMilliseconds 68 69 [FixedPcd.arm] 70 gArmTokenSpaceGuid.PcdCpuVectorBaseAddress 71