Merge "caimito: Use build_flags for SVN" into main

This commit is contained in:
Lokesh Kumar Goel 2024-07-12 18:00:40 +00:00 committed by Android (Google) Code Review
commit d68d6de7c4
3 changed files with 24 additions and 3 deletions

View file

@ -69,8 +69,15 @@ include device/google/gs-common/modem/radio_ext/radio_ext.mk
include device/google/gs-common/pixelsupport/pixelsupport.mk
# Increment the SVN for any official public releases
ifdef RELEASE_SVN_CAIMAN
TARGET_SVN ?= $(RELEASE_SVN_CAIMAN)
else
# Set this for older releases that don't use build flag
TARGET_SVN ?= 03
endif
PRODUCT_VENDOR_PROPERTIES += \
ro.vendor.build.svn=3
ro.vendor.build.svn=$(TARGET_SVN)
# go/lyric-soong-variables
$(call soong_config_set,lyric,camera_hardware,caiman)

View file

@ -69,8 +69,15 @@ include device/google/gs-common/modem/radio_ext/radio_ext.mk
include device/google/gs-common/pixelsupport/pixelsupport.mk
# Increment the SVN for any official public releases
ifdef RELEASE_SVN_KOMODO
TARGET_SVN ?= $(RELEASE_SVN_KOMODO)
else
# Set this for older releases that don't use build flag
TARGET_SVN ?= 03
endif
PRODUCT_VENDOR_PROPERTIES += \
ro.vendor.build.svn=3
ro.vendor.build.svn=$(TARGET_SVN)
# go/lyric-soong-variables
$(call soong_config_set,lyric,camera_hardware,komodo)

View file

@ -59,8 +59,15 @@ include device/google/gs-common/modem/radio_ext/radio_ext.mk
include device/google/gs-common/pixelsupport/pixelsupport.mk
# Increment the SVN for any official public releases
ifdef RELEASE_SVN_TOKAY
TARGET_SVN ?= $(RELEASE_SVN_TOKAY)
else
# Set this for older releases that don't use build flag
TARGET_SVN ?= 03
endif
PRODUCT_VENDOR_PROPERTIES += \
ro.vendor.build.svn=3
ro.vendor.build.svn=$(TARGET_SVN)
# go/lyric-soong-variables
$(call soong_config_set,lyric,camera_hardware,tokay)