From c4baba880e0b28ce82845275b328a12b2407e2f0 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 1 Mar 2021 15:35:27 -0500 Subject: [PATCH] Linux: Enable GTK3 by default (see issue #2969) GTK3 is required by the Chrome runtime. Client applications using GTK2 will now require a custom build of CEF with use_gtk=false set via GN_DEFINES. --- tools/gn_args.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/gn_args.py b/tools/gn_args.py index bb1a3bc4b..62a233d0b 100644 --- a/tools/gn_args.py +++ b/tools/gn_args.py @@ -243,10 +243,6 @@ def GetRecommendedDefaultArgs(): # TODO(cef): Remove this flag once we require a newer host system. result['fatal_linker_warnings'] = False - # GTK is enabled by default for the Chrome runtime (see issue #2969). - # Disable GTK when building the CEF runtime only (see issue #2014). - result['use_gtk'] = False - return result