3fe9c310d1
* Source: LineageOS/android_hardware_interfaces@ef97157 Change-Id: Id12ceb1bca1578a0c8a9e048562a224ec74d93fb
65 lines
1.3 KiB
Plaintext
65 lines
1.3 KiB
Plaintext
cc_library_static {
|
|
name: "multihal-samsung8974",
|
|
vendor: true,
|
|
srcs: [
|
|
"multihal.cpp",
|
|
"SensorEventQueue.cpp",
|
|
],
|
|
header_libs: [
|
|
"libhardware_headers",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libutils",
|
|
"libdl",
|
|
],
|
|
export_include_dirs: ["."],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.sensors@1.0-impl",
|
|
defaults: ["hidl_defaults"],
|
|
proprietary: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["Sensors.cpp"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libhardware",
|
|
"libbase",
|
|
"libutils",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"android.hardware.sensors@1.0",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.sensors@1.0-convert",
|
|
"multihal",
|
|
],
|
|
local_include_dirs: ["include/sensors"],
|
|
}
|
|
|
|
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",
|
|
],
|
|
}
|