1BOARD_VENDOR_SEPOLICY_DIRS += device/google/gs-common/aoc/sepolicy 2 3PRODUCT_PACKAGES += dump_aoc \ 4 aocd \ 5 aocxd 6 7# If AoC Daemon is not present on this build, load firmware at boot via rc 8ifeq ($(wildcard vendor/google/whitechapel/aoc/aocd),) 9PRODUCT_COPY_FILES += \ 10 device/google/gs-common/aoc/conf/init.aoc.nodaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.aoc.rc 11else 12PRODUCT_COPY_FILES += \ 13 device/google/gs-common/aoc/conf/init.aoc.daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.aoc.rc 14endif 15 16ifneq ($(wildcard vendor/google/whitechapel/aoc/aocx/aidl/aocx/framework_compatibility_matrix.xml),) 17DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE += \ 18 vendor/google/whitechapel/aoc/aocx/aidl/aocx/framework_compatibility_matrix.xml 19endif 20 21# AoC debug support 22PRODUCT_PACKAGES_DEBUG += \ 23 aocdump \ 24 aocutil \ 25 aoc_audio_cfg \ 26 vp_util \ 27 aocx_tool 28