Title: [233313] trunk/Tools
Revision
233313
Author
[email protected]
Date
2018-06-28 10:35:34 -0700 (Thu, 28 Jun 2018)

Log Message

Fix the iOS build following r233299
(https://bugs.webkit.org/show_bug.cgi?id=183744)

Only build lldbWebKitTester on Mac as that is the only supported platform at the time of writing.

* Makefile:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (233312 => 233313)


--- trunk/Tools/ChangeLog	2018-06-28 17:24:01 UTC (rev 233312)
+++ trunk/Tools/ChangeLog	2018-06-28 17:35:34 UTC (rev 233313)
@@ -1,3 +1,12 @@
+2018-06-28  Daniel Bates  <[email protected]>
+
+        Fix the iOS build following r233299
+        (https://bugs.webkit.org/show_bug.cgi?id=183744)
+
+        Only build lldbWebKitTester on Mac as that is the only supported platform at the time of writing.
+
+        * Makefile:
+
 2018-06-28  Sihui Liu  <[email protected]>
 
         Cookie API: cookie creation time is wrong

Modified: trunk/Tools/Makefile (233312 => 233313)


--- trunk/Tools/Makefile	2018-06-28 17:24:01 UTC (rev 233312)
+++ trunk/Tools/Makefile	2018-06-28 17:35:34 UTC (rev 233313)
@@ -2,8 +2,12 @@
 
 ifneq (,$(SDKROOT))
 	ifeq (,$(findstring macosx,$(SDKROOT)))
-		MODULES = DumpRenderTree WebKitTestRunner ../Source/ThirdParty/gtest/xcode TestWebKitAPI lldb/lldbWebKitTester
+		# Embedded OS
+		MODULES = DumpRenderTree WebKitTestRunner ../Source/ThirdParty/gtest/xcode TestWebKitAPI
 	endif
+	ifneq (,$(findstring macosx,$(SDKROOT)))
+		MODULES += lldb/lldbWebKitTester
+	endif
 	ifneq (,$(findstring iphone,$(SDKROOT)))
 		MODULES += MobileMiniBrowser
 	endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to