Pixel 5a (barbet) does not support Pixel dump, we need to exclude build Pixel dump for Pixel 5a (barbet). The git_24Q2-beta-release TARGET_PRODUCT is barbet_beta, updated to barbet% for all barbet target products. Bug: 330819191 Test: Local build and trigger a new build the result passed (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:d4de4ddf902f75ebcb6b0e1079e78b8a96410ed5) Merged-In: I2c1785105bab74a483bc68893d96a8a88eabfd90 Change-Id: I2c1785105bab74a483bc68893d96a8a88eabfd90 24D1-dev is based on 24Q2-release. Therefore, we merged this CL to 24D1-dev.
15 lines
483 B
Makefile
15 lines
483 B
Makefile
ifneq ($(TARGET_BUILD_VARIANT), user)
|
|
ifeq (,$(filter aosp_%, $(TARGET_PRODUCT))) # Skip aosp target product
|
|
PRODUCT_PACKAGES_DEBUG += \
|
|
Gyotaku
|
|
|
|
BOARD_SEPOLICY_DIRS += device/google/gs-common/gyotaku_app/sepolicy/
|
|
|
|
# Pixel 5a (barbet) does not support Pixel dump
|
|
ifeq (,$(filter barbet%,$(TARGET_PRODUCT)))
|
|
PRODUCT_PACKAGES_DEBUG += dump_gyotaku
|
|
BOARD_SEPOLICY_DIRS += device/google/gs-common/gyotaku_app/dump
|
|
endif
|
|
endif
|
|
endif
|