mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
This patch adds a HIDL based software implementation of gatekeeper based
on libgatekeeper.
Also adds OWNER files to the vts test and default implementation
directories.
Test: Manually tested in emulator. Changing passwords and login worked.
VtsHalGatekeeperV1_0TargetTest
gatekeeper-software-device-unit-tests
Change-Id: I632aeb6677640c133ec1b79e72568840adbc0550
Merged-In: I632aeb6677640c133ec1b79e72568840adbc0550
29 lines
676 B
Plaintext
29 lines
676 B
Plaintext
cc_binary {
|
|
name: "android.hardware.gatekeeper@1.0-service.software",
|
|
defaults: ["hidl_defaults"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
init_rc: ["android.hardware.gatekeeper@1.0-service.software.rc"],
|
|
|
|
srcs: [
|
|
"service.cpp",
|
|
"SoftGateKeeperDevice.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.gatekeeper@1.0",
|
|
"libbase",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libutils",
|
|
"liblog",
|
|
"libcrypto",
|
|
"libgatekeeper",
|
|
],
|
|
|
|
static_libs: ["libscrypt_static"],
|
|
|
|
vintf_fragments: ["android.hardware.gatekeeper@1.0-service.software.xml"],
|
|
}
|