Title: [278658] trunk/Source/WebKit
- Revision
- 278658
- Author
- [email protected]
- Date
- 2021-06-09 06:40:41 -0700 (Wed, 09 Jun 2021)
Log Message
[GTK] Do not depend on resources provided by the GNOME icon theme
https://bugs.webkit.org/show_bug.cgi?id=186767
Reviewed by Adrian Perez de Castro.
Covered by existing tests.
* PlatformGTK.cmake:
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (278657 => 278658)
--- trunk/Source/WebKit/ChangeLog 2021-06-09 12:36:07 UTC (rev 278657)
+++ trunk/Source/WebKit/ChangeLog 2021-06-09 13:40:41 UTC (rev 278658)
@@ -1,3 +1,14 @@
+2021-06-09 Diego Pino Garcia <[email protected]>
+
+ [GTK] Do not depend on resources provided by the GNOME icon theme
+ https://bugs.webkit.org/show_bug.cgi?id=186767
+
+ Reviewed by Adrian Perez de Castro.
+
+ Covered by existing tests.
+
+ * PlatformGTK.cmake:
+
2021-06-09 Alexander Mikhaylenko <[email protected]>
[GTK4] Add support for navigation gestures
Modified: trunk/Source/WebKit/PlatformGTK.cmake (278657 => 278658)
--- trunk/Source/WebKit/PlatformGTK.cmake 2021-06-09 12:36:07 UTC (rev 278657)
+++ trunk/Source/WebKit/PlatformGTK.cmake 2021-06-09 13:40:41 UTC (rev 278658)
@@ -546,14 +546,14 @@
WEBKIT_BUILD_INSPECTOR_GRESOURCES(${WebKit2Gtk_DERIVED_SOURCES_DIR})
-set(WebKitResources
- " <file alias=\"css/gtk-theme.css\">gtk-theme.css</file>\n"
- " <file alias=\"images/missingImage\">missingImage.png</file>\n"
- " <file alias=\"images/missingImage@2x\">[email protected]</file>\n"
- " <file alias=\"images/panIcon\">panIcon.png</file>\n"
- " <file alias=\"images/textAreaResizeCorner\">textAreaResizeCorner.png</file>\n"
- " <file alias=\"images/textAreaResizeCorner@2x\">[email protected]</file>\n"
-)
+set(WebKitResources "")
+list(APPEND WebKitResources "<file alias=\"css/gtk-theme.css\">gtk-theme.css</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/missingImage\">missingImage.png</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/missingImage@2x\">[email protected]</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/missingImage@3x\">[email protected]</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/panIcon\">panIcon.png</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/textAreaResizeCorner\">textAreaResizeCorner.png</file>\n")
+list(APPEND WebKitResources "<file alias=\"images/textAreaResizeCorner@2x\">[email protected]</file>\n")
if (ENABLE_WEB_AUDIO)
list(APPEND WebKitResources
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes