1# This is a trivial shared library that will be imported 2# by the main project's binary. Note that it imports 3# another library 4# 5LOCAL_PATH := $(call my-dir) 6 7include $(CLEAR_VARS) 8LOCAL_MODULE := libpath1 9LOCAL_SRC_FILES := path1.c 10LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 11LOCAL_SHARED_LIBRARIES := libpath2 12include $(BUILD_SHARED_LIBRARY) 13 14$(call import-module,path2) 15