Fix linking issue (missing wayland-client library) (#21408)

As fl_renderer_wayland.cc uses directly some of the wayland-client
related functions it should also add this library as a dependency.
This commit is contained in:
Damian Wrobel 2020-10-20 14:47:40 +02:00 committed by GitHub
parent e78e405e6a
commit 91c81ebfae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -80,7 +80,10 @@ source_set("flutter_linux_sources") {
"fl_standard_message_codec_private.h",
]
configs += [ "//flutter/shell/platform/linux/config:gtk" ]
configs += [
"//flutter/shell/platform/linux/config:gtk",
"//flutter/shell/platform/linux/config:wayland-client",
]
sources = [
"egl_utils.cc",

View File

@ -22,3 +22,7 @@ pkg_config("egl") {
pkg_config("wayland-egl") {
packages = [ "wayland-egl" ]
}
pkg_config("wayland-client") {
packages = [ "wayland-client" ]
}