1#/** @file
2#
3#  Copyright (c) 2013-2015, ARM Ltd. All rights reserved.<BR>
4#
5#  This program and the accompanying materials
6#  are licensed and made available under the terms and conditions of the BSD License
7#  which accompanies this distribution. The full text of the license may be found at
8#  http://opensource.org/licenses/bsd-license.php
9#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11#
12#
13#**/
14
15[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = AndroidFastbootApp
18  FILE_GUID                      = 9588502a-5370-11e3-8631-d7c5951364c8
19  MODULE_TYPE                    = UEFI_APPLICATION
20  VERSION_STRING                 = 1.0
21  ENTRY_POINT                    = FastbootAppEntryPoint
22
23[Sources.common]
24  AndroidFastbootApp.c
25  AndroidBootImg.c
26
27[Sources.ARM, Sources.AARCH64]
28  Arm/BootAndroidBootImg.c
29
30[LibraryClasses]
31  BaseLib
32  BaseMemoryLib
33  BdsLib
34  DebugLib
35  DevicePathLib
36  DxeServicesTableLib
37  MemoryAllocationLib
38  PcdLib
39  PrintLib
40  UefiApplicationEntryPoint
41  UefiBootServicesTableLib
42  UefiLib
43  UefiRuntimeServicesTableLib
44
45[Protocols]
46  gAndroidFastbootTransportProtocolGuid
47  gAndroidFastbootPlatformProtocolGuid
48  gEfiSimpleTextOutProtocolGuid
49  gEfiSimpleTextInProtocolGuid
50
51[Packages]
52  MdePkg/MdePkg.dec
53  MdeModulePkg/MdeModulePkg.dec
54  EmbeddedPkg/EmbeddedPkg.dec
55
56[Packages.ARM, Packages.AARCH64]
57  ArmPkg/ArmPkg.dec
58  ArmPlatformPkg/ArmPlatformPkg.dec
59