1# Copyright (C) 2013 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
15enable_memtrack := true
16ifeq ($(TARGET_USES_QMAA),true)
17#memtrack requires graphics to work
18ifeq ($(TARGET_USES_QMAA_OVERRIDE_GFX),false)
19enable_memtrack := false
20endif
21endif
22
23ifeq ($(enable_memtrack),true)
24LOCAL_PATH := $(call my-dir)
25
26# HAL module implemenation stored in
27# hw/<POWERS_HARDWARE_MODULE_ID>.<ro.hardware>.so
28include $(CLEAR_VARS)
29
30LOCAL_MODULE_RELATIVE_PATH := hw
31LOCAL_VENDOR_MODULE := true
32LOCAL_C_INCLUDES += hardware/libhardware/include
33LOCAL_CFLAGS := -Wconversion -Wall -Werror -Wno-sign-conversion
34LOCAL_CLANG  := true
35LOCAL_SHARED_LIBRARIES := liblog
36LOCAL_HEADER_LIBRARIES := libhardware_headers
37LOCAL_SRC_FILES := memtrack_msm.c kgsl.c
38LOCAL_MODULE := memtrack.$(TARGET_BOARD_PLATFORM)
39LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
40LOCAL_LICENSE_CONDITIONS := notice
41include $(BUILD_SHARED_LIBRARY)
42endif
43