| LOCAL_PATH := $(call my-dir) | |
| include $(CLEAR_VARS) | |
| LOCAL_MODULE := libdisplayconfig | |
| 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) |