1# 2# Copyright (C) 2022 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17# This makefile comprises the common content for the vendor partition of an 18# automotive device. 19 20$(call inherit-product, $(SRC_TARGET_DIR)/product/handheld_vendor.mk) 21 22ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) 23# Include carwatchdog testclient for debug builds 24PRODUCT_PACKAGES += carwatchdog_testclient 25BOARD_SEPOLICY_DIRS += packages/services/Car/cpp/watchdog/testclient/sepolicy 26endif 27 28ifeq ($(ENABLE_EVS_SAMPLE), true) 29# Include the reference EVS HAL implementation. 30PRODUCT_PACKAGES += android.hardware.automotive.evs-default 31endif # ENABLE_EVS_SAMPLE 32 33# Sensor features 34PRODUCT_COPY_FILES += \ 35 frameworks/native/data/etc/android.hardware.sensor.accelerometer_limited_axes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer_limited_axes.xml \ 36 frameworks/native/data/etc/android.hardware.sensor.gyroscope_limited_axes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope_limited_axes.xml \ 37 frameworks/native/data/etc/android.hardware.sensor.accelerometer_limited_axes_uncalibrated.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer_limited_axes_uncalibrated.xml \ 38 frameworks/native/data/etc/android.hardware.sensor.gyroscope_limited_axes_uncalibrated.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope_limited_axes_uncalibrated.xml \ 39