Convert to Android.bp
See build/soong/README.md for more information
Test: mmma hardware/libhardware
Change-Id: Ibb7e2af9d55f581e951d8996cea5e52cd0766b04
diff --git a/modules/sensors/Android.bp b/modules/sensors/Android.bp
index f39ba52..3d14bdf 100644
--- a/modules/sensors/Android.bp
+++ b/modules/sensors/Android.bp
@@ -3,7 +3,7 @@
vendor: true,
srcs: [
"multihal.cpp",
- "SensorEventQueue.cpp"
+ "SensorEventQueue.cpp",
],
header_libs: [
"libhardware_headers",
@@ -12,8 +12,28 @@
"liblog",
"libcutils",
"libutils",
- "libdl"
+ "libdl",
],
export_include_dirs: ["."],
- cflags: ["-Wall", "-Werror"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+}
+
+cc_test_host {
+ name: "sensorstests",
+ gtest: false,
+ srcs: [
+ "SensorEventQueue.cpp",
+ "tests/SensorEventQueue_test.cpp",
+ ],
+ static_libs: [
+ "libcutils",
+ "libutils",
+ ],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
}