diff --git a/build/install-build-deps-linux-desktop.sh b/build/install-build-deps-linux-desktop.sh index e3c47a69a3375..6048470aa43de 100755 --- a/build/install-build-deps-linux-desktop.sh +++ b/build/install-build-deps-linux-desktop.sh @@ -8,4 +8,4 @@ set -e -sudo apt-get -y install libglfw3-dev libepoxy-dev libgtk-3-dev libx11-dev +sudo apt-get -y install libglfw3-dev libgtk-3-dev libx11-dev diff --git a/shell/platform/glfw/BUILD.gn b/shell/platform/glfw/BUILD.gn index 5fa29fc02c717..00b1aec1bccd9 100644 --- a/shell/platform/glfw/BUILD.gn +++ b/shell/platform/glfw/BUILD.gn @@ -59,7 +59,6 @@ source_set("flutter_glfw") { libs = [ "GL" ] configs += [ - "$flutter_root/shell/platform/linux/config:epoxy", "$flutter_root/shell/platform/linux/config:glfw3", "$flutter_root/shell/platform/linux/config:gtk3", "$flutter_root/shell/platform/linux/config:x11", diff --git a/shell/platform/glfw/flutter_glfw.cc b/shell/platform/glfw/flutter_glfw.cc index 9b2e6c4871d6c..ab03cac69f9c5 100644 --- a/shell/platform/glfw/flutter_glfw.cc +++ b/shell/platform/glfw/flutter_glfw.cc @@ -10,11 +10,6 @@ #include #include -#ifdef __linux__ -// Epoxy must be included before any graphics-related code. -#include -#endif - #include #include "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/plugin_registrar.h" diff --git a/shell/platform/linux/config/BUILD.gn b/shell/platform/linux/config/BUILD.gn index 81043013717b1..8eeeaf687b258 100644 --- a/shell/platform/linux/config/BUILD.gn +++ b/shell/platform/linux/config/BUILD.gn @@ -4,10 +4,6 @@ import("//build/config/linux/pkg_config.gni") -pkg_config("epoxy") { - packages = [ "epoxy" ] -} - pkg_config("glfw3") { packages = [ "glfw3" ] }