1 LOCAL_PATH:= $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_SRC_FILES := \ 6 jni_init.cpp \ 7 com_android_terminal_Terminal.cpp \ 8 9 LOCAL_C_INCLUDES += \ 10 external/libvterm/include \ 11 libcore/include \ 12 frameworks/base/include 13 14 LOCAL_SHARED_LIBRARIES := \ 15 libandroidfw \ 16 libandroid_runtime \ 17 liblog \ 18 libnativehelper \ 19 libutils 20 21 LOCAL_STATIC_LIBRARIES := \ 22 libvterm 23 24 LOCAL_CFLAGS := \ 25 -Wno-unused-parameter \ 26 27 LOCAL_MODULE := libjni_terminal 28 LOCAL_MODULE_TAGS := optional 29 30 include $(BUILD_SHARED_LIBRARY) 31