-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keystore 2.0: Add keystore2 support to the keystore-engine.
Test: ??? Bug: 173546268 Bug: 171305607 Bug: 175068876 Change-Id: Ib44a8787d31a994453ab56022546cfbc5b76516e
- Loading branch information
Janis Danisevskis
committed
Feb 24, 2021
1 parent
5eeb3d1
commit 670122f
Showing
4 changed files
with
453 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ cc_library_shared { | |
srcs: [ | ||
"android_engine.cpp", | ||
"keystore_backend_binder.cpp", | ||
"keystore2_engine.cpp", | ||
], | ||
|
||
cflags: [ | ||
|
@@ -36,7 +37,9 @@ cc_library_shared { | |
], | ||
|
||
shared_libs: [ | ||
"android.system.keystore2-V1-ndk_platform", | ||
"libbinder", | ||
"libbinder_ndk", | ||
"libcrypto", | ||
"libcutils", | ||
"libhidlbase", | ||
|
@@ -58,6 +61,7 @@ cc_library_shared { | |
srcs: [ | ||
"android_engine.cpp", | ||
"keystore_backend_hidl.cpp", | ||
"keystore2_engine.cpp", | ||
], | ||
|
||
cflags: [ | ||
|
@@ -68,7 +72,10 @@ cc_library_shared { | |
], | ||
|
||
shared_libs: [ | ||
"android.system.keystore2-V1-ndk_platform", | ||
"[email protected]", | ||
"libbase", | ||
"libbinder_ndk", | ||
"libcrypto", | ||
"liblog", | ||
"libhidlbase", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.