Title: [272929] trunk
Revision
272929
Author
timothy_hor...@apple.com
Date
2021-02-16 14:38:55 -0800 (Tue, 16 Feb 2021)

Log Message

Local macCatalyst builds should not build WebInspectorUI
https://bugs.webkit.org/show_bug.cgi?id=221992

Reviewed by Wenson Hsieh.

* Source/Makefile:
This project is not used in macCatalyst, and is not even built in production builds.
We should stop building it in local release/debug builds as well.

Modified Paths

Diff

Modified: trunk/ChangeLog (272928 => 272929)


--- trunk/ChangeLog	2021-02-16 22:05:09 UTC (rev 272928)
+++ trunk/ChangeLog	2021-02-16 22:38:55 UTC (rev 272929)
@@ -1,3 +1,14 @@
+2021-02-16  Tim Horton  <timothy_hor...@apple.com>
+
+        Local macCatalyst builds should not build WebInspectorUI
+        https://bugs.webkit.org/show_bug.cgi?id=221992
+
+        Reviewed by Wenson Hsieh.
+
+        * Source/Makefile:
+        This project is not used in macCatalyst, and is not even built in production builds.
+        We should stop building it in local release/debug builds as well.
+
 2021-02-11  Don Olmstead  <don.olmst...@sony.com>
 
         [CMake] WEBKIT_EXECUTABLE can incorrectly link framework

Modified: trunk/Source/Makefile (272928 => 272929)


--- trunk/Source/Makefile	2021-02-16 22:05:09 UTC (rev 272928)
+++ trunk/Source/Makefile	2021-02-16 22:38:55 UTC (rev 272929)
@@ -13,6 +13,10 @@
 	WEBINSPECTORUI_MODULE = WebInspectorUI
 endif
 
+ifeq (iosmac,$(SDK_VARIANT))
+	WEBINSPECTORUI_MODULE =
+endif
+
 MODULES = bmalloc WTF _javascript_Core ThirdParty WebCore $(WEBINSPECTORUI_MODULE) WebKitLegacy WebKit
 
 define build_target_for_each_module
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to