blob: 05e42d40c6e8bfda119b7630a6efdea58b3b234e [file] [log] [blame]
Saurabh Shah56f610d2012-08-07 15:27:06 -07001LOCAL_PATH := $(call my-dir)
2include $(LOCAL_PATH)/../common.mk
3include $(CLEAR_VARS)
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -08004
Saurabh Shah56f610d2012-08-07 15:27:06 -07005LOCAL_MODULE := libexternal
Saurabh Shah56f610d2012-08-07 15:27:06 -07006LOCAL_MODULE_TAGS := optional
7LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
Amara Venkata Mastan Manoj Kumar376d8a82013-03-13 19:18:47 -07008LOCAL_SHARED_LIBRARIES := $(common_libs) liboverlay libqdutils
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -08009LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdexternal\"
Saurabh Shah56f610d2012-08-07 15:27:06 -070010LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps)
11LOCAL_SRC_FILES := external.cpp
12
13include $(BUILD_SHARED_LIBRARY)