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
This commit is contained in:
parent
2aca7fdcc2
commit
567386c23f
|
|
@ -276,6 +276,7 @@ export const deps: any = {
|
||||||
'libhyphen0',
|
'libhyphen0',
|
||||||
'libicu66',
|
'libicu66',
|
||||||
'libjpeg-turbo8',
|
'libjpeg-turbo8',
|
||||||
|
'libnghttp2-14',
|
||||||
'libnotify4',
|
'libnotify4',
|
||||||
'libopengl0',
|
'libopengl0',
|
||||||
'libopenjp2-7',
|
'libopenjp2-7',
|
||||||
|
|
@ -712,6 +713,7 @@ export const deps: any = {
|
||||||
'libjpeg62-turbo',
|
'libjpeg62-turbo',
|
||||||
'liblcms2-2',
|
'liblcms2-2',
|
||||||
'libmanette-0.2-0',
|
'libmanette-0.2-0',
|
||||||
|
'libnghttp2-14',
|
||||||
'libnotify4',
|
'libnotify4',
|
||||||
'libopengl0',
|
'libopengl0',
|
||||||
'libopenjp2-7',
|
'libopenjp2-7',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue