blob: 732de3f9619dcf92ac968e335cc5a9e7f7250448 [file] [log] [blame]
Amit Pundir4c517ea2021-05-23 02:24:19 +05301# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16# HAL module implemenation stored in
17# hw/<COPYPIX_HARDWARE_MODULE_ID>.<ro.board.platform>.so
18include $(CLEAR_VARS)
19
20LOCAL_SRC_FILES := lights.c
21LOCAL_MODULE_RELATIVE_PATH := hw
22LOCAL_HEADER_LIBRARIES := libhardware_headers
23LOCAL_SHARED_LIBRARIES := liblog libcutils
24LOCAL_CFLAGS := -DLOG_TAG=\"qdlights\"
25ifeq ($(LLVM_SA), true)
26 LOCAL_CFLAGS += --compile-and-analyze --analyzer-perf --analyzer-Werror
27endif
28LOCAL_CFLAGS += -Wno-error
29LOCAL_CLANG := true
Alexander Martinzec017932022-01-10 17:44:05 +010030LOCAL_MODULE := lights.$(TARGET_DEVICE)
Amit Pundir4c517ea2021-05-23 02:24:19 +053031LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 legacy_not_a_contribution
32LOCAL_LICENSE_CONDITIONS := by_exception_only not_allowed notice
33LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE
34LOCAL_MODULE_TAGS := optional
35LOCAL_VENDOR_MODULE := true
36
37include $(BUILD_SHARED_LIBRARY)