Home | History | Annotate | Download | only in BaseUefiTianoCustomDecompressLib
      1 ## @file

      2 #  This library instance produces UefiDecompressLib and Tiano Custom decompression algorithm.

      3 #  Tiano custom decompression algorithm shares most of code with Uefi Decompress algorithm.

      4 #

      5 #  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>

      6 #

      7 #  This program and the accompanying materials

      8 #  are licensed and made available under the terms and conditions of the BSD License

      9 #  which accompanies this distribution. The full text of the license may be found at

     10 #  http://opensource.org/licenses/bsd-license.php

     11 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     12 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     13 #

     14 ##

     15 
     16 [Defines]
     17   INF_VERSION                    = 0x00010005
     18   BASE_NAME                      = BaseUefiTianoDecompressLib
     19   MODULE_UNI_FILE                = BaseUefiTianoDecompressLib.uni
     20   FILE_GUID                      = d774c4d9-c121-4da3-a5e2-0f317e3c630c
     21   MODULE_TYPE                    = BASE
     22   VERSION_STRING                 = 1.0
     23   LIBRARY_CLASS                  = UefiDecompressLib
     24   CONSTRUCTOR                    = TianoDecompressLibConstructor
     25 
     26 #

     27 # The following information is for reference only and not required by the build tools.

     28 #

     29 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     30 #

     31 
     32 [Sources]
     33   BaseUefiTianoCustomDecompressLibInternals.h
     34   BaseUefiTianoCustomDecompressLib.c
     35 
     36 [Packages]
     37   MdePkg/MdePkg.dec
     38   IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
     39 
     40 [LibraryClasses]
     41   BaseLib
     42   DebugLib
     43   BaseMemoryLib
     44   ExtractGuidedSectionLib
     45 
     46 [Guids]
     47   gTianoCustomDecompressGuid      ## PRODUCES  ## UNDEFINED # specifies tiano custom decompress algorithm.

     48 
     49