1 | ## @file
|
---|
2 | # A simple "fuzzer" application for OrderedCollectionLib, reading commands
|
---|
3 | # from the standard input, and writing results to the standard output.
|
---|
4 | #
|
---|
5 | # Copyright (C) 2014, Red Hat, Inc.
|
---|
6 | # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # This program and the accompanying materials are licensed and made available
|
---|
9 | # under the terms and conditions of the BSD License which accompanies this
|
---|
10 | # distribution. The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.
|
---|
12 | #
|
---|
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR
|
---|
15 | # IMPLIED.
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010006
|
---|
20 | BASE_NAME = OrderedCollectionTest
|
---|
21 | FILE_GUID = E6C7EBB7-1604-4FCB-8F87-B3A6F48730AE
|
---|
22 | MODULE_TYPE = UEFI_APPLICATION
|
---|
23 | VERSION_STRING = 0.1
|
---|
24 | ENTRY_POINT = ShellCEntryLib
|
---|
25 |
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 IPF
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | OrderedCollectionTest.c
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | StdLib/StdLib.dec
|
---|
35 | MdePkg/MdePkg.dec
|
---|
36 | ShellPkg/ShellPkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | LibC
|
---|
40 | LibStdio
|
---|
41 | DevShell
|
---|
42 | OrderedCollectionLib
|
---|