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.
39 lines
1.6 KiB
39 lines
1.6 KiB
LOCAL_PATH := $(call my-dir) |
|
include $(LOCAL_PATH)/../common.mk |
|
include $(CLEAR_VARS) |
|
|
|
# b/24171136 many files not compiling with clang/llvm yet |
|
LOCAL_CLANG := false |
|
|
|
LOCAL_MODULE := libqdutils |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_SHARED_LIBRARIES := $(common_libs) libui libbinder libqservice |
|
LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
|
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdutils\" |
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
|
LOCAL_COPY_HEADERS_TO := $(common_header_export_path) |
|
LOCAL_COPY_HEADERS := display_config.h mdp_version.h |
|
LOCAL_SRC_FILES := profiler.cpp mdp_version.cpp \ |
|
idle_invalidator.cpp \ |
|
comptype.cpp qd_utils.cpp \ |
|
cb_utils.cpp display_config.cpp \ |
|
cb_swap_rect.cpp |
|
include $(BUILD_SHARED_LIBRARY) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
# b/24171136 many files not compiling with clang/llvm yet |
|
LOCAL_CLANG := false |
|
|
|
LOCAL_COPY_HEADERS_TO := $(common_header_export_path) |
|
LOCAL_COPY_HEADERS := qdMetaData.h |
|
LOCAL_SHARED_LIBRARIES := liblog libcutils |
|
LOCAL_C_INCLUDES := $(common_includes) |
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
|
LOCAL_SRC_FILES := qdMetaData.cpp |
|
LOCAL_CFLAGS := $(common_flags) |
|
LOCAL_CFLAGS += -DLOG_TAG=\"DisplayMetaData\" |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_MODULE := libqdMetaData |
|
include $(BUILD_SHARED_LIBRARY) |
|
|
|
|