shiba: Regenerate vendor blobs

Signed-off-by: HeroBuxx <me@herobuxx.me>
This commit is contained in:
HeroBuxx
2026-07-11 13:39:02 +00:00
commit 49a18e22f0
2845 changed files with 217497 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/vendor/bin/sh
# This script delays experiments by the specified amount of seconds. The delay is not needed for
# the normal operation, but becomes essential for the rare case (which "should not happen") where
# an experiment causes really bad issues (e.g. crashes the kernel). In such case the delay gives
# GMSCore an opportunity to fetch fresh experiments snapshot (with the bad experiment disabled).
#
# See go/pixel-perf-experiment-whatif for more info.
delay_seconds="$1"
if [ -n "$delay_seconds" ]; then
sleep "$delay_seconds"
/vendor/bin/setprop vendor.perf.allow_experiments 1
fi