Title: [254942] trunk/Tools
Revision
254942
Author
[email protected]
Date
2020-01-22 13:33:19 -0800 (Wed, 22 Jan 2020)

Log Message

[build-webkit] Add option for toggling unified build
https://bugs.webkit.org/show_bug.cgi?id=206597

Reviewed by Adrian Perez de Castro.

Added command line option for build-webkit script to toggle unified build.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (254941 => 254942)


--- trunk/Tools/ChangeLog	2020-01-22 21:32:11 UTC (rev 254941)
+++ trunk/Tools/ChangeLog	2020-01-22 21:33:19 UTC (rev 254942)
@@ -1,3 +1,14 @@
+2020-01-22  Basuke Suzuki  <[email protected]>
+
+        [build-webkit] Add option for toggling unified build
+        https://bugs.webkit.org/show_bug.cgi?id=206597
+
+        Reviewed by Adrian Perez de Castro.
+
+        Added command line option for build-webkit script to toggle unified build.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2020-01-22  Don Olmstead  <[email protected]>
 
         Share InjectedBundleController::platformInitialize

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (254941 => 254942)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2020-01-22 21:32:11 UTC (rev 254941)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2020-01-22 21:33:19 UTC (rev 254942)
@@ -163,6 +163,7 @@
     $threeDTransformsSupport,
     $touchEventsSupport,
     $touchSliderSupport,
+    $unifiedBuildSupport,
     $userMessageHandlersSupport,
     $userselectAllSupport,
     $variationFontsSupport,
@@ -570,6 +571,9 @@
 
     { option => "system-malloc", desc => "Toggle system allocator instead of bmalloc",
       define => "USE_SYSTEM_MALLOC", value => \$systemMallocSupport },
+
+    { option => "unified-builds", desc => "Toggle unified builds",
+      define => "ENABLE_UNIFIED_BUILDS", value => \$unifiedBuildSupport },
 );
 
 sub getFeatureOptionList()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to