diff options
author | Isaac Chen <isaacchen@isaacchen.cn> | 2018-04-26 06:26:43 +0200 |
---|---|---|
committer | Isaac Chen <isaacchen@isaacchen.cn> | 2018-07-13 00:03:24 +0000 |
commit | a07f5c59c3112b6cd149255f580847a8ab5cb5e9 (patch) | |
tree | a30ac499460b5d2d11784d67f4e25455b7eeea98 /biometrics/Android.bp | |
parent | e9c2d355a47a24fc2b29970ee64580c02ca5adb9 (diff) |
wayne: Import HIDL fingerprint wrapper service
Signed-off-by: Isaac Chen <isaacchen@isaacchen.cn>
Diffstat (limited to 'biometrics/Android.bp')
-rw-r--r-- | biometrics/Android.bp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/biometrics/Android.bp b/biometrics/Android.bp new file mode 100644 index 0000000..d6d1362 --- /dev/null +++ b/biometrics/Android.bp @@ -0,0 +1,34 @@ +// +// Copyright (C) 2017-2018 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. + +cc_binary { + name: "android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne", + relative_install_path: "hw", + defaults: ["hidl_defaults"], + init_rc: ["android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc"], + srcs: ["service.cpp", "BiometricsFingerprint.cpp"], + shared_libs: [ + "libbase", + "libcutils", + "libhardware", + "libhidlbase", + "libhidltransport", + "libhwbinder", + "liblog", + "libutils", + "android.hardware.biometrics.fingerprint@2.1", + ], + proprietary: true, +} |