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.
21 lines
723 B
21 lines
723 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libdisplayconfig
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-BSD
|
|
LOCAL_LICENSE_CONDITIONS := notice
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_HEADER_LIBRARIES := display_headers
|
|
LOCAL_SRC_FILES := DisplayConfig.cpp
|
|
LOCAL_SHARED_LIBRARIES := libhidlbase libutils \
|
|
vendor.display.config@1.0
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
|
|
|
|
ifeq ($(LLVM_SA), true)
|
|
LOCAL_CFLAGS += --compile-and-analyze --analyzer-perf --analyzer-Werror
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|