From 7b3e45494e44d98e04f4c158d57190bf08f5efe0 Mon Sep 17 00:00:00 2001 From: cobalt-github-releaser-bot <95661244+cobalt-github-releaser-bot@users.noreply.github.com> Date: Sun, 23 Jun 2024 19:38:05 -0700 Subject: [PATCH] Cherry pick PR #3465: [XB1] Truncate protocol name in the AppxManifest (#3658) Refer to the original PR: https://github.com/youtube/cobalt/pull/3465 Microsoft limits the uap:Protocol Name attribute to 39 characters. Truncate this when generating the AppxManifest if it would be longer. b/345279618 Change-Id: I4eab4cbd8d42ec6c767164a1e9c91b54bc85b62c Co-authored-by: Tyler Holcombe --- starboard/xb1/templates/ApplicationSection.xml.template | 3 ++- starboard/xb1/test_filters.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/starboard/xb1/templates/ApplicationSection.xml.template b/starboard/xb1/templates/ApplicationSection.xml.template index c24e1f08278b..cc1b094a3ea3 100644 --- a/starboard/xb1/templates/ApplicationSection.xml.template +++ b/starboard/xb1/templates/ApplicationSection.xml.template @@ -42,7 +42,8 @@ {% endif %} - + {# Truncating because MS set the max length of Protocol Name to 39 characters. #} + {% endif %} diff --git a/starboard/xb1/test_filters.py b/starboard/xb1/test_filters.py index 2055c5172772..ec66dd24cdb6 100644 --- a/starboard/xb1/test_filters.py +++ b/starboard/xb1/test_filters.py @@ -51,6 +51,7 @@ 'VideoDecoderTests/VideoDecoderTest.ResetBeforeInput/beneath_the_canopy_248_vp9_dmp_DecodeToTexture', 'VideoDecoderTests/VideoDecoderTest.MultipleResets/beneath_the_canopy_248_vp9_dmp_DecodeToTexture', ], + 'trace_processor_minimal_smoke_tests': ['StorageMinimalSmokeTest/*',], }