Files
hardware_interfaces/gatekeeper/1.0/software/Android.bp
Janis Danisevskis b1d2df1ed0 Added HIDL based software implementation of gatekeeper
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
2019-06-27 11:32:57 -07:00

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"],
}