mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Merge "Automatic mk -> bp." am: e5fd969f19
am: 72c720a4e3
Change-Id: Icfc8b46117e94461906806023852836a0ace3a55
This commit is contained in:
@@ -6,5 +6,6 @@ subdirs = [
|
|||||||
"common/2.0/default",
|
"common/2.0/default",
|
||||||
"common/test/utility",
|
"common/test/utility",
|
||||||
"effect/2.0",
|
"effect/2.0",
|
||||||
|
"effect/2.0/default",
|
||||||
"effect/2.0/vts/functional",
|
"effect/2.0/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
46
audio/effect/2.0/default/Android.bp
Normal file
46
audio/effect/2.0/default/Android.bp
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.audio.effect@2.0-impl",
|
||||||
|
vendor: true,
|
||||||
|
relative_install_path: "hw",
|
||||||
|
srcs: [
|
||||||
|
"AcousticEchoCancelerEffect.cpp",
|
||||||
|
"AudioBufferManager.cpp",
|
||||||
|
"AutomaticGainControlEffect.cpp",
|
||||||
|
"BassBoostEffect.cpp",
|
||||||
|
"Conversions.cpp",
|
||||||
|
"DownmixEffect.cpp",
|
||||||
|
"Effect.cpp",
|
||||||
|
"EffectsFactory.cpp",
|
||||||
|
"EnvironmentalReverbEffect.cpp",
|
||||||
|
"EqualizerEffect.cpp",
|
||||||
|
"LoudnessEnhancerEffect.cpp",
|
||||||
|
"NoiseSuppressionEffect.cpp",
|
||||||
|
"PresetReverbEffect.cpp",
|
||||||
|
"VirtualizerEffect.cpp",
|
||||||
|
"VisualizerEffect.cpp",
|
||||||
|
],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"libbase",
|
||||||
|
"libcutils",
|
||||||
|
"libeffects",
|
||||||
|
"libfmq",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidlmemory",
|
||||||
|
"libhidltransport",
|
||||||
|
"liblog",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.audio.common@2.0",
|
||||||
|
"android.hardware.audio.common@2.0-util",
|
||||||
|
"android.hardware.audio.effect@2.0",
|
||||||
|
"android.hidl.memory@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
header_libs: [
|
||||||
|
"libaudio_system_headers",
|
||||||
|
"libaudioclient_headers",
|
||||||
|
"libeffects_headers",
|
||||||
|
"libhardware_headers",
|
||||||
|
"libmedia_headers",
|
||||||
|
],
|
||||||
|
}
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.audio.effect@2.0-impl
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
AcousticEchoCancelerEffect.cpp \
|
|
||||||
AudioBufferManager.cpp \
|
|
||||||
AutomaticGainControlEffect.cpp \
|
|
||||||
BassBoostEffect.cpp \
|
|
||||||
Conversions.cpp \
|
|
||||||
DownmixEffect.cpp \
|
|
||||||
Effect.cpp \
|
|
||||||
EffectsFactory.cpp \
|
|
||||||
EnvironmentalReverbEffect.cpp \
|
|
||||||
EqualizerEffect.cpp \
|
|
||||||
LoudnessEnhancerEffect.cpp \
|
|
||||||
NoiseSuppressionEffect.cpp \
|
|
||||||
PresetReverbEffect.cpp \
|
|
||||||
VirtualizerEffect.cpp \
|
|
||||||
VisualizerEffect.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
libbase \
|
|
||||||
libcutils \
|
|
||||||
libeffects \
|
|
||||||
libfmq \
|
|
||||||
libhidlbase \
|
|
||||||
libhidlmemory \
|
|
||||||
libhidltransport \
|
|
||||||
liblog \
|
|
||||||
libutils \
|
|
||||||
android.hardware.audio.common@2.0 \
|
|
||||||
android.hardware.audio.common@2.0-util \
|
|
||||||
android.hardware.audio.effect@2.0 \
|
|
||||||
android.hidl.memory@1.0 \
|
|
||||||
|
|
||||||
LOCAL_HEADER_LIBRARIES := \
|
|
||||||
libaudio_system_headers \
|
|
||||||
libaudioclient_headers \
|
|
||||||
libeffects_headers \
|
|
||||||
libhardware_headers \
|
|
||||||
libmedia_headers \
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
// This is an autogenerated file, do not edit.
|
// This is an autogenerated file, do not edit.
|
||||||
subdirs = [
|
subdirs = [
|
||||||
"fingerprint/2.1",
|
"fingerprint/2.1",
|
||||||
|
"fingerprint/2.1/default",
|
||||||
"fingerprint/2.1/vts/functional",
|
"fingerprint/2.1/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
21
biometrics/fingerprint/2.1/default/Android.bp
Normal file
21
biometrics/fingerprint/2.1/default/Android.bp
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.biometrics.fingerprint@2.1-service",
|
||||||
|
init_rc: ["android.hardware.biometrics.fingerprint@2.1-service.rc"],
|
||||||
|
vendor: true,
|
||||||
|
relative_install_path: "hw",
|
||||||
|
srcs: [
|
||||||
|
"BiometricsFingerprint.cpp",
|
||||||
|
"service.cpp",
|
||||||
|
],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"libcutils",
|
||||||
|
"liblog",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libhardware",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.biometrics.fingerprint@2.1",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.biometrics.fingerprint@2.1-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.biometrics.fingerprint@2.1-service.rc
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
BiometricsFingerprint.cpp \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
libcutils \
|
|
||||||
liblog \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libhardware \
|
|
||||||
libutils \
|
|
||||||
android.hardware.biometrics.fingerprint@2.1 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -112,3 +112,23 @@ cc_test_host {
|
|||||||
"liblog",
|
"liblog",
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.bluetooth@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.bluetooth@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.bluetooth@1.0",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2016 The Android Open Source 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_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.bluetooth@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.bluetooth@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.bluetooth@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
34
boot/1.0/default/Android.bp
Normal file
34
boot/1.0/default/Android.bp
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.boot@1.0-impl",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
srcs: ["BootControl.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libhardware",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.boot@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.boot@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.boot@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.boot@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.boot@1.0-impl
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
BootControl.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libhardware \
|
|
||||||
libutils \
|
|
||||||
android.hardware.boot@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.boot@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.boot@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libhardware \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libutils \
|
|
||||||
android.hardware.boot@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
// This is an autogenerated file, do not edit.
|
// This is an autogenerated file, do not edit.
|
||||||
subdirs = [
|
subdirs = [
|
||||||
"1.0",
|
"1.0",
|
||||||
|
"1.0/default",
|
||||||
"1.0/vts/functional",
|
"1.0/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
36
gatekeeper/1.0/default/Android.bp
Normal file
36
gatekeeper/1.0/default/Android.bp
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.gatekeeper@1.0-impl",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
|
||||||
|
srcs: ["Gatekeeper.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"android.hardware.gatekeeper@1.0",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libutils",
|
||||||
|
"liblog",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.gatekeeper@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.gatekeeper@1.0-service.rc"],
|
||||||
|
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"android.hardware.gatekeeper@1.0",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libutils",
|
||||||
|
"liblog",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.gatekeeper@1.0-impl
|
|
||||||
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
Gatekeeper.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
android.hardware.gatekeeper@1.0 \
|
|
||||||
libhardware \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libutils \
|
|
||||||
liblog \
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.gatekeeper@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc
|
|
||||||
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
android.hardware.gatekeeper@1.0 \
|
|
||||||
libhardware \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libutils \
|
|
||||||
liblog \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
// This is an autogenerated file, do not edit.
|
// This is an autogenerated file, do not edit.
|
||||||
subdirs = [
|
subdirs = [
|
||||||
"1.0",
|
"1.0",
|
||||||
|
"1.0/default",
|
||||||
"1.0/vts/functional",
|
"1.0/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
54
gnss/1.0/default/Android.bp
Normal file
54
gnss/1.0/default/Android.bp
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.gnss@1.0-impl",
|
||||||
|
vendor: true,
|
||||||
|
relative_install_path: "hw",
|
||||||
|
srcs: [
|
||||||
|
"ThreadCreationWrapper.cpp",
|
||||||
|
"AGnss.cpp",
|
||||||
|
"AGnssRil.cpp",
|
||||||
|
"Gnss.cpp",
|
||||||
|
"GnssBatching.cpp",
|
||||||
|
"GnssDebug.cpp",
|
||||||
|
"GnssGeofencing.cpp",
|
||||||
|
"GnssMeasurement.cpp",
|
||||||
|
"GnssNavigationMessage.cpp",
|
||||||
|
"GnssNi.cpp",
|
||||||
|
"GnssXtra.cpp",
|
||||||
|
"GnssConfiguration.cpp",
|
||||||
|
"GnssUtils.cpp",
|
||||||
|
],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.gnss@1.0",
|
||||||
|
"libhardware",
|
||||||
|
],
|
||||||
|
|
||||||
|
cflags: ["-Werror"],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
name: "android.hardware.gnss@1.0-service",
|
||||||
|
init_rc: ["android.hardware.gnss@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware",
|
||||||
|
"libbinder",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.gnss@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.gnss@1.0-impl
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
ThreadCreationWrapper.cpp \
|
|
||||||
AGnss.cpp \
|
|
||||||
AGnssRil.cpp \
|
|
||||||
Gnss.cpp \
|
|
||||||
GnssBatching.cpp \
|
|
||||||
GnssDebug.cpp \
|
|
||||||
GnssGeofencing.cpp \
|
|
||||||
GnssMeasurement.cpp \
|
|
||||||
GnssNavigationMessage.cpp \
|
|
||||||
GnssNi.cpp \
|
|
||||||
GnssXtra.cpp \
|
|
||||||
GnssConfiguration.cpp \
|
|
||||||
GnssUtils.cpp
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libutils \
|
|
||||||
android.hardware.gnss@1.0 \
|
|
||||||
libhardware
|
|
||||||
|
|
||||||
LOCAL_CFLAGS += -Werror
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.gnss@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.gnss@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware \
|
|
||||||
libbinder \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.gnss@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
// This is an autogenerated file, do not edit.
|
// This is an autogenerated file, do not edit.
|
||||||
subdirs = [
|
subdirs = [
|
||||||
"1.0",
|
"1.0",
|
||||||
|
"1.0/default",
|
||||||
"1.0/vts/functional",
|
"1.0/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -43,4 +43,21 @@ cc_library_static {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.sensors@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.sensors@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.sensors@1.0",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
LOCAL_PATH:= $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.sensors@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.sensors@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.sensors@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -1,7 +1,22 @@
|
|||||||
|
//
|
||||||
|
// Copyright (C) 2016 The Android Open Source 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_library_shared {
|
cc_library_shared {
|
||||||
name: "android.hardware.thermal@1.0-impl",
|
name: "android.hardware.thermal@1.0-impl",
|
||||||
defaults: ["hidl_defaults"],
|
defaults: ["hidl_defaults"],
|
||||||
proprietary: true,
|
vendor: true,
|
||||||
relative_install_path: "hw",
|
relative_install_path: "hw",
|
||||||
srcs: ["Thermal.cpp"],
|
srcs: ["Thermal.cpp"],
|
||||||
shared_libs: [
|
shared_libs: [
|
||||||
@@ -16,3 +31,23 @@ cc_library_shared {
|
|||||||
"android.hardware.thermal@1.0",
|
"android.hardware.thermal@1.0",
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.thermal@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.thermal@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.thermal@1.0",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2016 The Android Open Source 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_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.thermal@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.thermal@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.thermal@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
// This is an autogenerated file, do not edit.
|
// This is an autogenerated file, do not edit.
|
||||||
subdirs = [
|
subdirs = [
|
||||||
"cec/1.0",
|
"cec/1.0",
|
||||||
|
"cec/1.0/default",
|
||||||
"input/1.0",
|
"input/1.0",
|
||||||
|
"input/1.0/default",
|
||||||
"input/1.0/vts/functional",
|
"input/1.0/vts/functional",
|
||||||
]
|
]
|
||||||
|
|||||||
39
tv/cec/1.0/default/Android.bp
Normal file
39
tv/cec/1.0/default/Android.bp
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.tv.cec@1.0-impl",
|
||||||
|
vendor: true,
|
||||||
|
relative_install_path: "hw",
|
||||||
|
srcs: ["HdmiCec.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"liblog",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware",
|
||||||
|
"android.hardware.tv.cec@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.tv.cec@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.tv.cec@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware_legacy",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.tv.cec@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.tv.cec@1.0-impl
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
HdmiCec.cpp
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
liblog \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware \
|
|
||||||
android.hardware.tv.cec@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.tv.cec@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware_legacy \
|
|
||||||
libhardware \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.tv.cec@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
41
tv/input/1.0/default/Android.bp
Normal file
41
tv/input/1.0/default/Android.bp
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
cc_library_shared {
|
||||||
|
name: "android.hardware.tv.input@1.0-impl",
|
||||||
|
vendor: true,
|
||||||
|
relative_install_path: "hw",
|
||||||
|
srcs: ["TvInput.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"libbase",
|
||||||
|
"liblog",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"libutils",
|
||||||
|
"android.hardware.audio.common@2.0",
|
||||||
|
"android.hardware.tv.input@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_binary {
|
||||||
|
name: "android.hardware.tv.input@1.0-service",
|
||||||
|
relative_install_path: "hw",
|
||||||
|
vendor: true,
|
||||||
|
init_rc: ["android.hardware.tv.input@1.0-service.rc"],
|
||||||
|
srcs: ["service.cpp"],
|
||||||
|
|
||||||
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
"libdl",
|
||||||
|
"libbase",
|
||||||
|
"libutils",
|
||||||
|
"libhardware_legacy",
|
||||||
|
"libhardware",
|
||||||
|
"libhidlbase",
|
||||||
|
"libhidltransport",
|
||||||
|
"android.hardware.audio.common@2.0",
|
||||||
|
"android.hardware.tv.input@1.0",
|
||||||
|
],
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := android.hardware.tv.input@1.0-impl
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
TvInput.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
libbase \
|
|
||||||
liblog \
|
|
||||||
libhardware \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
libutils \
|
|
||||||
android.hardware.audio.common@2.0 \
|
|
||||||
android.hardware.tv.input@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
||||||
LOCAL_PROPRIETARY_MODULE := true
|
|
||||||
LOCAL_MODULE := android.hardware.tv.input@1.0-service
|
|
||||||
LOCAL_INIT_RC := android.hardware.tv.input@1.0-service.rc
|
|
||||||
LOCAL_SRC_FILES := \
|
|
||||||
service.cpp \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
|
||||||
liblog \
|
|
||||||
libcutils \
|
|
||||||
libdl \
|
|
||||||
libbase \
|
|
||||||
libutils \
|
|
||||||
libhardware_legacy \
|
|
||||||
libhardware \
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES += \
|
|
||||||
libhidlbase \
|
|
||||||
libhidltransport \
|
|
||||||
android.hardware.audio.common@2.0 \
|
|
||||||
android.hardware.tv.input@1.0 \
|
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user