]>
Commit | Line | Data |
---|---|---|
949f388f | 1 | ## @file\r |
2 | # GOP driver\r | |
3 | #\r | |
4 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r | |
d18d8a1d | 5 | # Portions copyright (c) 2011, Apple Inc. All rights reserved.\r |
949f388f | 6 | #\r |
7 | # This program and the accompanying materials\r | |
8 | # are licensed and made available under the terms and conditions of the BSD License\r | |
9 | # which accompanies this distribution. The full text of the license may be found at\r | |
10 | # http://opensource.org/licenses/bsd-license.php\r | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | #\r | |
14 | #\r | |
15 | ##\r | |
16 | \r | |
17 | [Defines]\r | |
18 | INF_VERSION = 0x00010005\r | |
19 | BASE_NAME = EmuGopDxe\r | |
20 | FILE_GUID = BCC87E0D-86D6-4D4D-8040-2D983D368BD1\r | |
21 | MODULE_TYPE = UEFI_DRIVER\r | |
22 | VERSION_STRING = 1.0\r | |
23 | \r | |
24 | ENTRY_POINT = InitializeEmuGop\r | |
25 | \r | |
26 | #\r | |
27 | # The following information is for reference only and not required by the build tools.\r | |
28 | #\r | |
29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
30 | #\r | |
d18d8a1d | 31 | # DRIVER_BINDING = gEmuGopDriverBinding\r |
32 | # COMPONENT_NAME = gEmuGopComponentName\r | |
949f388f | 33 | #\r |
34 | \r | |
35 | [Sources]\r | |
36 | ComponentName.c\r | |
37 | GopScreen.c\r | |
38 | GopDriver.c\r | |
39 | GopInput.c\r | |
40 | Gop.h\r | |
41 | \r | |
42 | \r | |
43 | [Packages]\r | |
44 | MdePkg/MdePkg.dec\r | |
bb89ec1a | 45 | EmulatorPkg/EmulatorPkg.dec\r |
949f388f | 46 | \r |
47 | \r | |
48 | [LibraryClasses]\r | |
49 | UefiBootServicesTableLib\r | |
50 | MemoryAllocationLib\r | |
51 | BaseMemoryLib\r | |
52 | UefiLib\r | |
53 | UefiDriverEntryPoint\r | |
54 | BaseLib\r | |
55 | DebugLib\r | |
56 | KeyMapLib\r | |
d18d8a1d | 57 | \r |
949f388f | 58 | \r |
59 | [Guids]\r | |
60 | gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID\r | |
61 | \r | |
62 | \r | |
63 | [Protocols]\r | |
64 | gEfiGraphicsOutputProtocolGuid\r | |
65 | gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START\r | |
66 | gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START\r | |
67 | gEfiSimplePointerProtocolGuid # PROTOCOL BY_START\r | |
68 | gEmuIoThunkProtocolGuid # PROTOCOL TO_START\r | |
69 | gEmuGraphicsWindowProtocolGuid # PROTOCOL TO_START\r |