* Since we'll only use it here, we don't need to export it as a separate module Change-Id: Ia7056fe6462cbd624d89db62fd239b6709862198
29 lines
616 B
Plaintext
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"],
|
|
}
|