summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRashed Abdel-Tawab <rashed@linux.com>2017-10-01 13:55:44 -0400
committerRashed Abdel-Tawab <rashed@linux.com>2017-10-01 13:56:50 -0400
commit1be4dac20757d8c89ec87411df4b7061b3ce73de (patch)
treea5398004445bc0a0649df508bd5d6db52fedac49
parent0e33a8e0a166164245d21fd988b5f1327cf7742f (diff)
downloadandroid_hardware_lineage_interfaces-1be4dac20757d8c89ec87411df4b7061b3ce73de.tar.gz
android_hardware_lineage_interfaces-1be4dac20757d8c89ec87411df4b7061b3ce73de.tar.bz2
android_hardware_lineage_interfaces-1be4dac20757d8c89ec87411df4b7061b3ce73de.zip
lineage/interfaces: Move fingerprint 2.0 service to fingerprint/2.0
Change-Id: I5072c69c57e93c9e5c7567978762dc0c2da24a0e
-rw-r--r--biometrics/fingerprint/2.0/Android.bp31
-rw-r--r--biometrics/fingerprint/2.0/BiometricsFingerprint.cpp (renamed from biometrics/fingerprint/BiometricsFingerprint.cpp)0
-rw-r--r--biometrics/fingerprint/2.0/BiometricsFingerprint.h (renamed from biometrics/fingerprint/BiometricsFingerprint.h)0
-rw-r--r--biometrics/fingerprint/2.0/android.hardware.biometrics.fingerprint@2.0-service.rc (renamed from biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.0-service.rc)0
-rw-r--r--biometrics/fingerprint/2.0/service.cpp (renamed from biometrics/fingerprint/service.cpp)0
-rw-r--r--biometrics/fingerprint/Android.bp34
6 files changed, 34 insertions, 31 deletions
diff --git a/biometrics/fingerprint/2.0/Android.bp b/biometrics/fingerprint/2.0/Android.bp
new file mode 100644
index 0000000..86d3fab
--- /dev/null
+++ b/biometrics/fingerprint/2.0/Android.bp
@@ -0,0 +1,31 @@
+//
+// Copyright (C) 2017 The Android Open Source Project
+// 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.
+cc_binary {
+ name: "android.hardware.biometrics.fingerprint@2.0-service",
+ relative_install_path: "hw",
+ init_rc: ["android.hardware.biometrics.fingerprint@2.0-service.rc"],
+ srcs: ["service.cpp", "BiometricsFingerprint.cpp"],
+ shared_libs: [
+ "libutils",
+ "liblog",
+ "libhidlbase",
+ "libhidltransport",
+ "libhardware",
+ "libhwbinder",
+ "android.hardware.biometrics.fingerprint@2.1",
+ ],
+ proprietary: true,
+}
diff --git a/biometrics/fingerprint/BiometricsFingerprint.cpp b/biometrics/fingerprint/2.0/BiometricsFingerprint.cpp
index cad25a0..cad25a0 100644
--- a/biometrics/fingerprint/BiometricsFingerprint.cpp
+++ b/biometrics/fingerprint/2.0/BiometricsFingerprint.cpp
diff --git a/biometrics/fingerprint/BiometricsFingerprint.h b/biometrics/fingerprint/2.0/BiometricsFingerprint.h
index 5923c84..5923c84 100644
--- a/biometrics/fingerprint/BiometricsFingerprint.h
+++ b/biometrics/fingerprint/2.0/BiometricsFingerprint.h
diff --git a/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.0-service.rc b/biometrics/fingerprint/2.0/android.hardware.biometrics.fingerprint@2.0-service.rc
index 076d904..076d904 100644
--- a/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.0-service.rc
+++ b/biometrics/fingerprint/2.0/android.hardware.biometrics.fingerprint@2.0-service.rc
diff --git a/biometrics/fingerprint/service.cpp b/biometrics/fingerprint/2.0/service.cpp
index 1697c07..1697c07 100644
--- a/biometrics/fingerprint/service.cpp
+++ b/biometrics/fingerprint/2.0/service.cpp
diff --git a/biometrics/fingerprint/Android.bp b/biometrics/fingerprint/Android.bp
index 86d3fab..5f8a18f 100644
--- a/biometrics/fingerprint/Android.bp
+++ b/biometrics/fingerprint/Android.bp
@@ -1,31 +1,3 @@
-//
-// Copyright (C) 2017 The Android Open Source Project
-// 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.
-cc_binary {
- name: "android.hardware.biometrics.fingerprint@2.0-service",
- relative_install_path: "hw",
- init_rc: ["android.hardware.biometrics.fingerprint@2.0-service.rc"],
- srcs: ["service.cpp", "BiometricsFingerprint.cpp"],
- shared_libs: [
- "libutils",
- "liblog",
- "libhidlbase",
- "libhidltransport",
- "libhardware",
- "libhwbinder",
- "android.hardware.biometrics.fingerprint@2.1",
- ],
- proprietary: true,
-}
+subdirs = [
+ "2.0",
+]