Remove LOCAL_COPY_HEADERS and hidl.base@1.0 Change-Id: I8a7c0b03fee3ef5c8d2f9f7e76d5d9cbe4b77c43
16 lines
516 B
Makefile
16 lines
516 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libdisplayconfig
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_HEADER_LIBRARIES := display_headers
|
|
LOCAL_SRC_FILES := DisplayConfig.cpp
|
|
LOCAL_SHARED_LIBRARIES := libhidlbase libhidltransport libutils \
|
|
vendor.display.config@1.0
|
|
|
|
ifeq ($(LLVM_SA), true)
|
|
LOCAL_CFLAGS += --compile-and-analyze --analyzer-perf --analyzer-Werror
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|