32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jeremy Apthorp <nornagon@nornagon.net>
|
|
Date: Thu, 20 Sep 2018 17:48:38 -0700
|
|
Subject: gtk_visibility.patch
|
|
|
|
Allow electron to depend on GTK in the GN build.
|
|
|
|
diff --git a/build/config/linux/gtk/BUILD.gn b/build/config/linux/gtk/BUILD.gn
|
|
index 349043f8a3cfc9f91cbae951e74258799a4fd126..0f7e3e544f524a7ad6660b54912cb1190282b6fc 100644
|
|
--- a/build/config/linux/gtk/BUILD.gn
|
|
+++ b/build/config/linux/gtk/BUILD.gn
|
|
@@ -27,6 +27,7 @@ pkg_config("gtk_internal_config") {
|
|
|
|
group("gtk") {
|
|
visibility = [
|
|
+ "//electron:*",
|
|
# These are allow-listed for WebRTC builds. Nothing in else should depend
|
|
# on GTK.
|
|
"//examples:peerconnection_client",
|
|
diff --git a/ui/ozone/platform/x11/BUILD.gn b/ui/ozone/platform/x11/BUILD.gn
|
|
index 34126e87bb62c312230e4a0c479f49736fa20e35..7320904ca819b6f6616192dd9f04f02ead2430a8 100644
|
|
--- a/ui/ozone/platform/x11/BUILD.gn
|
|
+++ b/ui/ozone/platform/x11/BUILD.gn
|
|
@@ -6,7 +6,7 @@ import("//build/config/chromeos/ui_mode.gni")
|
|
import("//gpu/vulkan/features.gni")
|
|
import("//ui/base/ui_features.gni")
|
|
|
|
-visibility = [ "//ui/ozone/*" ]
|
|
+visibility = [ "//ui/ozone/*", "//electron:*" ]
|
|
|
|
assert(is_linux || is_chromeos)
|
|
|