You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Split build scripts to support standard and slow-gpu variants
Usually we do not change the framework, but recent Android-12 UI changes
made some of the devices unusable. Let's patch AOSP for such devices
and ship releases patched to give our users better use experience.
Signed-off-by: Roman Stratiienko <[email protected]>
Change-Id: I907a825e38122779279b7b6a6be4457c63badf9d
build_all: $(foreach target,$(TARGETS),$(AOSP_PATH)/out_images/gd-$(VER)-$(target)-$(VARIANT).tar.gz )## Build all GloDroid targets, put images into <AOSP tree>/out_images/...
58
+
build_standard: $(foreach target,$(TARGETS_STANDARD),$(AOSP_PATH)/out_images/gd-$(VER)-$(target)-$(VARIANT).tar.gz )## Build all standard GloDroid targets, put images into <AOSP tree>/out_images/...
59
+
60
+
build_slowgpu: $(foreach target,$(TARGETS_SLOWGPU),$(AOSP_PATH)/out_images/gd-$(VER)-$(target)-$(VARIANT).tar.gz )## Build all slow-gpu GloDroid targets, put images into <AOSP tree>/out_images/...
61
+
62
+
patch_slowgpu: ## Patch the framework to reduce load on slow GPU
0 commit comments