1 ## @file 2 # Virtual Keyboard driver. 3 # 4 # Copyright (c) 2017, Linaro Ltd. All rights reserved.<BR> 5 # 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions 8 # of the BSD License which accompanies this distribution. The 9 # 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 [Defines] 18 INF_VERSION = 0x00010019 19 BASE_NAME = VirtualKeyboardDxe 20 FILE_GUID = 88079b18-b42b-44aa-a6f2-b83911075e89 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.0 23 ENTRY_POINT = InitializeVirtualKeyboard 24 25 # 26 # The following information is for reference only and not required by the build tools. 27 # 28 # VALID_ARCHITECTURES = AARCH64 29 # 30 # DRIVER_BINDING = gVirtualKeyboardDriverBinding 31 # COMPONENT_NAME = gVirtualKeyboardComponentName 32 # 33 34 [Sources.common] 35 ComponentName.c 36 VirtualKeyboard.c 37 38 [Packages] 39 EmbeddedPkg/EmbeddedPkg.dec 40 MdePkg/MdePkg.dec 41 MdeModulePkg/MdeModulePkg.dec 42 OpenPlatformPkg/Drivers/Keyboard/VirtualKeyboardDxe/VirtualKeyboardDxe.dec 43 44 [LibraryClasses] 45 BaseLib 46 BaseMemoryLib 47 DebugLib 48 IoLib 49 ReportStatusCodeLib 50 UefiDriverEntryPoint 51 UefiBootServicesTableLib 52 UefiLib 53 54 [Protocols] 55 gEfiDriverBindingProtocolGuid 56 gEfiSimpleTextInProtocolGuid 57 gEfiSimpleTextInputExProtocolGuid 58 gPlatformVirtualKeyboardProtocolGuid 59 60 [Depex] 61 TRUE 62