| Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) | 
 | 2 | include $(LOCAL_PATH)/../common.mk | 
 | 3 | include $(CLEAR_VARS) | 
| Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 4 |  | 
| Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 5 | LOCAL_MODULE                  := libexternal | 
 | 6 | LOCAL_MODULE_PATH             := $(TARGET_OUT_SHARED_LIBRARIES) | 
 | 7 | LOCAL_MODULE_TAGS             := optional | 
 | 8 | LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes) | 
 | 9 | LOCAL_SHARED_LIBRARIES        := $(common_libs) liboverlay | 
| Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 10 | LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdexternal\" | 
| Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 11 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) | 
 | 12 | LOCAL_SRC_FILES               := external.cpp | 
 | 13 |  | 
 | 14 | include $(BUILD_SHARED_LIBRARY) |