CI build_test target tests every product, which invokes the new widevine_generic product out of the build script. This makes build fail due to the missing TARGET_BASE_PRODUCT. Fix it by fallback to module_arm as base product. Bug: 281617982 Test: TH Change-Id: I36d437a56609865e64aea86c5d3af02887b42bc7
9 lines
269 B
Makefile
9 lines
269 B
Makefile
ifdef TARGET_BASE_PRODUCT
|
|
$(call inherit-product, $(TARGET_BASE_PRODUCT))
|
|
else
|
|
# Fallback to a valid base product to satisfy build_test
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/module_arm.mk)
|
|
endif
|
|
|
|
include vendor/widevine/libwvdrmengine/apex/device/device.mk
|