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 forkpty.cpp 9 10 LOCAL_C_INCLUDES += \ 11 external/libvterm/include \ 12 libcore/include \ 13 frameworks/base/include 14 15 LOCAL_SHARED_LIBRARIES := \ 16 libandroidfw \ 17 libandroid_runtime \ 18 liblog \ 19 libnativehelper \ 20 libutils 21 22 LOCAL_STATIC_LIBRARIES := \ 23 libvterm 24 25 LOCAL_MODULE := libjni_terminal 26 LOCAL_MODULE_TAGS := optional 27 28 include $(BUILD_SHARED_LIBRARY) 29