hardware_xiaomi/hidl/sensors/1.0/Android.bp
Sebastiano Barezzi 2e85d44338
hidl: sensors: 1.0: Directly build convert.cpp with the impl
* Since we'll only use it here, we don't need to export it as a separate
  module

Change-Id: Ia7056fe6462cbd624d89db62fd239b6709862198
2023-04-13 16:43:07 +02:00

29 lines
616 B
Plaintext

package {
// See: http://go/android-license-faq
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_library_shared {
name: "android.hardware.sensors@1.0-impl",
defaults: ["hidl_defaults"],
proprietary: true,
relative_install_path: "hw",
srcs: [
"Sensors.cpp",
"convert.cpp",
],
shared_libs: [
"liblog",
"libcutils",
"libhardware",
"libbase",
"libutils",
"libhidlbase",
"android.hardware.sensors@1.0",
],
static_libs: [
"multihal",
],
local_include_dirs: ["include/sensors"],
}