Michael Wright | 1f2c768 | 2015-06-03 13:46:48 +0100 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES := \ |
| 6 | com_android_commands_hid_Device.cpp |
| 7 | |
| 8 | LOCAL_C_INCLUDES := \ |
Siarhei Vishniakou | 55656e4 | 2017-03-31 17:23:39 -0700 | [diff] [blame] | 9 | $(JNI_H_INCLUDE) |
Michael Wright | 1f2c768 | 2015-06-03 13:46:48 +0100 | [diff] [blame] | 10 | |
Siarhei Vishniakou | 55656e4 | 2017-03-31 17:23:39 -0700 | [diff] [blame] | 11 | LOCAL_LDLIBS += -landroid -llog -lnativehelper |
Michael Wright | 1f2c768 | 2015-06-03 13:46:48 +0100 | [diff] [blame] | 12 | |
| 13 | LOCAL_MODULE := libhidcommand_jni |
| 14 | LOCAL_MODULE_TAGS := optional |
| 15 | |
Aurimas Liutikas | 1c8cbb5 | 2016-02-19 13:44:25 -0800 | [diff] [blame] | 16 | LOCAL_CFLAGS += -Wall -Wextra -Werror |
Michael Wright | 1f2c768 | 2015-06-03 13:46:48 +0100 | [diff] [blame] | 17 | |
| 18 | include $(BUILD_SHARED_LIBRARY) |