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 := \ |
| 9 | $(JNI_H_INCLUDE) \ |
| 10 | frameworks/base/core/jni |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | libandroid_runtime \ |
| 14 | liblog \ |
| 15 | libnativehelper \ |
| 16 | libutils |
| 17 | |
| 18 | LOCAL_MODULE := libhidcommand_jni |
| 19 | LOCAL_MODULE_TAGS := optional |
| 20 | |
Aurimas Liutikas | 1c8cbb5 | 2016-02-19 13:44:25 -0800 | [diff] [blame] | 21 | LOCAL_CFLAGS += -Wall -Wextra -Werror |
Michael Wright | 1f2c768 | 2015-06-03 13:46:48 +0100 | [diff] [blame] | 22 | |
| 23 | include $(BUILD_SHARED_LIBRARY) |