Last change
on this file since 80721 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.2 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # SSL/TLS Wrapper Library Instance based on OpenSSL.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = TlsLib
|
---|
13 | MODULE_UNI_FILE = TlsLib.uni
|
---|
14 | FILE_GUID = CC729DC5-4E21-0B36-1A00-3A8E1B86A155
|
---|
15 | MODULE_TYPE = DXE_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | LIBRARY_CLASS = TlsLib|DXE_DRIVER DXE_CORE UEFI_APPLICATION UEFI_DRIVER
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following information is for reference only and not required by the build tools.
|
---|
21 | #
|
---|
22 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
|
---|
23 | #
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | InternalTlsLib.h
|
---|
27 | TlsInit.c
|
---|
28 | TlsConfig.c
|
---|
29 | TlsProcess.c
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 | CryptoPkg/CryptoPkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | BaseCryptLib
|
---|
37 | BaseMemoryLib
|
---|
38 | DebugLib
|
---|
39 | IntrinsicLib
|
---|
40 | MemoryAllocationLib
|
---|
41 | OpensslLib
|
---|
42 | SafeIntLib
|
---|
43 |
|
---|
44 | [BuildOptions]
|
---|
45 | #
|
---|
46 | # suppress the following warnings so we do not break the build with warnings-as-errors:
|
---|
47 | # C4090: 'function' : different 'const' qualifiers
|
---|
48 | #
|
---|
49 | MSFT:*_*_*_CC_FLAGS = /wd4090
|
---|
50 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.