diff options
author | LuK1337 <priv.luk@gmail.com> | 2017-09-02 18:41:27 +0200 |
---|---|---|
committer | dd3boh <dade.garberi@gmail.com> | 2017-10-31 12:34:42 +0100 |
commit | 3fd7d0bcaa8958bd955763c99240ea7e042182cb (patch) | |
tree | 77d0b8804fba0e8986611c35923d7ba9b640b34a /fingerprint/Android.mk | |
parent | 327c5d051337b31a7ba2849c3a2777d61e5d6b6e (diff) |
z2_plus: Add basic 2.0 -> 2.1 fingerprint HAL wrapper
Change-Id: I36752485e39c93691261d9cf90f9455c7de2648e
Signed-off-by: Erfan Abdi <erfangplus@gmail.com>
Diffstat (limited to 'fingerprint/Android.mk')
-rw-r--r-- | fingerprint/Android.mk | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/fingerprint/Android.mk b/fingerprint/Android.mk new file mode 100644 index 0000000..8137e6e --- /dev/null +++ b/fingerprint/Android.mk @@ -0,0 +1,31 @@ +# +# Copyright (C) 2017 The LineageOS Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ + FingerprintWrapper.cpp + +LOCAL_SHARED_LIBRARIES := \ + libhardware liblog + +LOCAL_MODULE_RELATIVE_PATH := hw +LOCAL_MODULE := fingerprint.msm8996 +LOCAL_MODULE_TAGS := optional + +include $(BUILD_SHARED_LIBRARY) |