Bug 1534688 - Use fake GMP plugins in wpt from mozharness. r=media-playback-reviewers,jgraham,webrtc-reviewers,bwc,padenot

Differential Revision: https://phabricator.services.mozilla.com/D228949
This commit is contained in:
Andreas Pehrson 2024-11-20 08:16:15 +00:00
parent 88eb8c517d
commit 88b9ba20eb

View File

@ -661,6 +661,11 @@ class WebPlatformTest(TestingMixin, MercurialScript, CodeCoverageMixin, AndroidM
if self.is_android:
env["ADB_PATH"] = self.adb_path
env["MOZ_GMP_PATH"] = os.pathsep.join(
os.path.join(dirs["abs_test_bin_dir"], "plugins", p, "1.0")
for p in ("gmp-fake", "gmp-fakeopenh264")
)
env = self.query_env(partial_env=env, log_level=INFO)
start_time = datetime.now()