android: add simple support library to communicate with the host service

This commit is contained in:
Simon Fels 2016-06-23 13:13:22 +02:00
commit fa296ba5cb
3 changed files with 49 additions and 0 deletions

View file

@ -1,6 +1,20 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES = \
jni/anbox_support.cpp
LOCAL_C_INCLUDES := \
$(JNI_H_INCLUDE) \
libcore/include
LOCAL_SHARED_LIBRARIES := \
liblog
LOCAL_MODULE := libanbox_support
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/src/java
LOCAL_SRC_FILES := $(call all-java-files-under, java)