You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
17 lines
303 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES := \ |
|
SensorEventQueue_test.cpp |
|
|
|
#LOCAL_CFLAGS := -g |
|
LOCAL_MODULE := sensorstests |
|
|
|
LOCAL_STATIC_LIBRARIES := libcutils libutils |
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. bionic |
|
|
|
LOCAL_LDLIBS += -lpthread |
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|