You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
831 B
20 lines
831 B
LOCAL_PATH := $(call my-dir) |
|
include $(LOCAL_PATH)/../common.mk |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := libqservice |
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES) |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
|
LOCAL_SHARED_LIBRARIES := $(common_libs) libexternal libbinder |
|
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdqservice\" |
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
|
LOCAL_SRC_FILES := QService.cpp \ |
|
IQService.cpp \ |
|
IQClient.cpp |
|
LOCAL_COPY_HEADERS_TO := $(common_header_export_path) |
|
LOCAL_COPY_HEADERS := IQService.h \ |
|
IQClient.h |
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|