1 | # $Id: VBoxDebugLib.inf 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxDebugLib - Debug logging and assertions support routines using DevEFI.
|
---|
4 | #
|
---|
5 |
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2009-2024 Oracle and/or its affiliates.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox base platform packages, as
|
---|
11 | # available from https://www.virtualbox.org.
|
---|
12 | #
|
---|
13 | # This program is free software; you can redistribute it and/or
|
---|
14 | # modify it under the terms of the GNU General Public License
|
---|
15 | # as published by the Free Software Foundation, in version 3 of the
|
---|
16 | # License.
|
---|
17 | #
|
---|
18 | # This program is distributed in the hope that it will be useful, but
|
---|
19 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | # General Public License for more details.
|
---|
22 | #
|
---|
23 | # You should have received a copy of the GNU General Public License
|
---|
24 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 | #
|
---|
26 | # The contents of this file may alternatively be used under the terms
|
---|
27 | # of the Common Development and Distribution License Version 1.0
|
---|
28 | # (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
29 | # in the VirtualBox distribution, in which case the provisions of the
|
---|
30 | # CDDL are applicable instead of those of the GPL.
|
---|
31 | #
|
---|
32 | # You may elect to license modified versions of this file under the
|
---|
33 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
34 | #
|
---|
35 | # SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
36 | #
|
---|
37 |
|
---|
38 |
|
---|
39 |
|
---|
40 | [Defines]
|
---|
41 | INF_VERSION = 0x00010005
|
---|
42 | BASE_NAME = VBoxDebugLib
|
---|
43 | FILE_GUID = 549306AB-75C1-4585-8681-556EBB34C60C
|
---|
44 | MODULE_TYPE = BASE
|
---|
45 | VERSION_STRING = 1.0
|
---|
46 | LIBRARY_CLASS = DebugLib
|
---|
47 |
|
---|
48 | [Sources.common]
|
---|
49 | VBoxDebugLib.c
|
---|
50 | VBoxPrintChar.c
|
---|
51 | VBoxPrintGuid.c
|
---|
52 | VBoxPrintHex.c
|
---|
53 | VBoxPrintHexDump.c
|
---|
54 | VBoxPrintString.c
|
---|
55 |
|
---|
56 | [Packages]
|
---|
57 | MdePkg/MdePkg.dec
|
---|
58 | VBoxPkg/VBoxPkg.dec
|
---|
59 |
|
---|
60 | [LibraryClasses]
|
---|
61 | BaseLib
|
---|
62 | BaseMemoryLib
|
---|
63 | PrintLib
|
---|
64 |
|
---|
65 | [Protocols]
|
---|
66 | gEfiDevicePathToTextProtocolGuid
|
---|
67 |
|
---|
68 | [Guids]
|
---|
69 | # none
|
---|
70 |
|
---|
71 | [Ppis]
|
---|
72 | # none
|
---|
73 |
|
---|
74 | [Guids]
|
---|
75 | # none
|
---|
76 |
|
---|
77 | [Pcd.common]
|
---|
78 | # none
|
---|
79 |
|
---|
80 | [FixedPcd.common]
|
---|
81 | # none
|
---|
82 |
|
---|
83 | [FeaturePcd.common]
|
---|
84 | # none
|
---|
85 |
|
---|