1## @file 2# File explorer DXE driver that produces File explorer Protocol. 3# 4# This driver produces File explorerprotocol layered on top of the FileExplorerLib 5# from the MdeModulePkg. 6# 7# Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR> 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = FileExplorerDxe 21 MODULE_UNI_FILE = FileExplorerDxe.uni 22 FILE_GUID = 405DA936-3737-4C0C-8E3F-E6172A568592 23 MODULE_TYPE = DXE_DRIVER 24 VERSION_STRING = 1.0 25 ENTRY_POINT = FileExplorerEntryPoint 26 27# 28# The following information is for reference only and not required by the build tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 IPF EBC 31# 32 33[Sources] 34 FileExplorerDxe.c 35 36[Packages] 37 MdeModulePkg/MdeModulePkg.dec 38 MdePkg/MdePkg.dec 39 40[LibraryClasses] 41 FileExplorerLib 42 UefiBootServicesTableLib 43 UefiDriverEntryPoint 44 DebugLib 45 46[Protocols] 47 gEfiFileExplorerProtocolGuid ## PRODUCES 48 49[Depex] 50 TRUE 51 52[UserExtensions.TianoCore."ExtraFiles"] 53 FileExplorerDxeExtra.uni 54