Title: [172511] trunk/Tools
Revision
172511
Author
[email protected]
Date
2014-08-12 19:35:29 -0700 (Tue, 12 Aug 2014)

Log Message

[iOS] build-webkit should not build WebKitSystemInterface and WebKitAdditions
https://bugs.webkit.org/show_bug.cgi?id=135845

Reviewed by Andy Estes.

Towards building the iOS WebKit port using the public SDK, remove the logic
added to build-webkit to build projects WebKitSystemInterface and
WebKitAdditions when building the iOS WebKit port.

* Scripts/build-webkit:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (172510 => 172511)


--- trunk/Tools/ChangeLog	2014-08-13 02:33:03 UTC (rev 172510)
+++ trunk/Tools/ChangeLog	2014-08-13 02:35:29 UTC (rev 172511)
@@ -1,3 +1,16 @@
+2014-08-12  Daniel Bates  <[email protected]>
+
+        [iOS] build-webkit should not build WebKitSystemInterface and WebKitAdditions
+        https://bugs.webkit.org/show_bug.cgi?id=135845
+
+        Reviewed by Andy Estes.
+
+        Towards building the iOS WebKit port using the public SDK, remove the logic
+        added to build-webkit to build projects WebKitSystemInterface and
+        WebKitAdditions when building the iOS WebKit port.
+
+        * Scripts/build-webkit:
+
 2014-08-12  Yusuke Suzuki  <[email protected]>
 
         [GTK] Adds dependency for GnuTLS 3.0+ explicitly in gtk/install-dependencies

Modified: trunk/Tools/Scripts/build-webkit (172510 => 172511)


--- trunk/Tools/Scripts/build-webkit	2014-08-13 02:33:03 UTC (rev 172510)
+++ trunk/Tools/Scripts/build-webkit	2014-08-13 02:35:29 UTC (rev 172511)
@@ -195,18 +195,6 @@
         push @options, $option unless $option eq "";
     }
 
-    if (isIOSWebKit()) {
-        # FIXME: Remove the inclusion of both WebKit System Interface and WebKit Additions projects
-        # once the iOS build is stable.
-
-        # WebKitSystemInterface should always be built just before WebKit.
-        my $webKitIndex = first { $projects[$_] eq "Source/WebKit" } 0..$#projects;
-        splice(@projects, $webKitIndex, 0, "../Internal/WebKitSystemInterface");
-
-        # WebKitAdditions must come before WebCore
-        splice(@projects, 0, 0, "../Internal/WebKitAdditions");
-    }
-
     # ANGLE must come before WebCore
     splice @projects, 0, 0, "Source/ThirdParty/ANGLE";
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to