From 2212781676a993c34e691456e877d26ba6ebcd67 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 11 Jan 2021 11:46:33 -0800 Subject: [PATCH] fix(launcher): add vcruntime140_1.dll to the list of known deps --- src/server/validateDependencies.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/validateDependencies.ts b/src/server/validateDependencies.ts index 3fbbb0fcaf179..b6ea32eeeaf1c 100644 --- a/src/server/validateDependencies.ts +++ b/src/server/validateDependencies.ts @@ -72,7 +72,7 @@ async function validateDependenciesWindows(browserPath: string, browser: Browser let isCrtMissing = false; let isMediaFoundationMissing = false; for (const dep of missingDeps) { - if (dep.startsWith('api-ms-win-crt') || dep === 'vcruntime140.dll' || dep === 'msvcp140.dll') + if (dep.startsWith('api-ms-win-crt') || dep === 'vcruntime140.dll' || dep === 'vcruntime140_1.dll' || dep === 'msvcp140.dll') isCrtMissing = true; else if (dep === 'mf.dll' || dep === 'mfplat.dll' || dep === 'msmpeg2vdec.dll' || dep === 'evr.dll' || dep === 'avrt.dll') isMediaFoundationMissing = true;