7219142a54
* chore: bump chromium in DEPS to 116.0.5833.0 * chore: update patches * 4530656: Add DeviceLoginScreenWebHidAllowDevicesForUrls policy https://chromium-review.googlesource.com/c/chromium/src/+/4530656 * Split CertDatabase notifications between trust changes and client cert changes https://chromium-review.googlesource.com/c/chromium/src/+/4596317 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
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 355067ea178bee1466f9df5a3ed146e9f09f0768..1b385d12692deece9e10722fc70215e8c645f6af 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 76f399cd766add88d96499dd1c15ae841a2273da..bd0382b148fdadafcfb32a26fc3ddbfa265fa512 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)
|
|
|