From 567386c23f56c156da8a967ec862b99f418eef16 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 2 Oct 2023 18:06:28 -0700 Subject: [PATCH] fix(webkit): add libnghttp2 to the deps on older distros (#27399) `bin/WPENetworkProcess` depends on `libsoup-3.0.so.0` which we bundle with the browser on Ubuntu 20 and Debian 11, but soup3 depends on `libnghttp2.so` which is expected to be installed on the host. Fixes https://github.com/microsoft/playwright/issues/27255 --- packages/playwright-core/src/server/registry/nativeDeps.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/playwright-core/src/server/registry/nativeDeps.ts b/packages/playwright-core/src/server/registry/nativeDeps.ts index 22f6af8d6c..f5f7ca6e90 100644 --- a/packages/playwright-core/src/server/registry/nativeDeps.ts +++ b/packages/playwright-core/src/server/registry/nativeDeps.ts @@ -276,6 +276,7 @@ export const deps: any = { 'libhyphen0', 'libicu66', 'libjpeg-turbo8', + 'libnghttp2-14', 'libnotify4', 'libopengl0', 'libopenjp2-7', @@ -712,6 +713,7 @@ export const deps: any = { 'libjpeg62-turbo', 'liblcms2-2', 'libmanette-0.2-0', + 'libnghttp2-14', 'libnotify4', 'libopengl0', 'libopenjp2-7',