1## @file
2#  Serialize Variables Library implementation
3#
4#  This library serializes and deserializes UEFI variables
5#
6#  Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
7#
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#  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                    = 0x00010005
19  BASE_NAME                      = DxeSerializeVariablesLib
20  FILE_GUID                      = 9515f92a-83ae-45fd-9d2e-e3dc15df52d0
21  MODULE_TYPE                    = UEFI_DRIVER
22  VERSION_STRING                 = 1.0
23  LIBRARY_CLASS                  = SerializeVariablesLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_DRIVER
24
25[Sources]
26  SerializeVariablesLib.c
27
28[Packages]
29  MdePkg/MdePkg.dec
30  MdeModulePkg/MdeModulePkg.dec
31  OvmfPkg/OvmfPkg.dec
32  ShellPkg/ShellPkg.dec
33
34[LibraryClasses]
35  BaseLib
36  BaseMemoryLib
37  DebugLib
38  MemoryAllocationLib
39  UefiBootServicesTableLib
40  UefiRuntimeServicesTableLib
41
42