blob: dcf4f248f4a8e831db7e71b3ddbfbddf202ef21d [file] [log] [blame]
Aaron Whyteab6ec382013-10-22 17:17:17 -07001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES := \
6 SensorEventQueue_test.cpp
7
Chih-Hung Hsieh1f601b12017-11-14 16:05:46 -08008LOCAL_CFLAGS := -Wall -Werror
Aaron Whyteab6ec382013-10-22 17:17:17 -07009LOCAL_MODULE := sensorstests
10
11LOCAL_STATIC_LIBRARIES := libcutils libutils
12
13LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. bionic
14
15LOCAL_LDLIBS += -lpthread
16
17include $(BUILD_HOST_EXECUTABLE)