Title: [200863] trunk
- Revision
- 200863
- Author
- [email protected]
- Date
- 2016-05-13 11:06:43 -0700 (Fri, 13 May 2016)
Log Message
Turn on WEB_TIMING for all ports
https://bugs.webkit.org/show_bug.cgi?id=157673
Reviewed by Alex Christensen.
.:
Turn on WEB_TIMING by default on the cmake Mac port, to match it with all other ports,
and make sure that the flag will be on by default for all ports.
* Source/cmake/OptionsGTK.cmake: Remove the specific private flag for WEB_TIMING.
* Source/cmake/OptionsMac.cmake: Remove the specific private flag for WEB_TIMING.
* Source/cmake/WebKitFeatures.cmake: Turn on WEB_TIMING for all ports by default.
Tools:
* Scripts/webkitperl/FeatureList.pm: Make sure that WEB_TIMING is on by default.
Modified Paths
Diff
Modified: trunk/ChangeLog (200862 => 200863)
--- trunk/ChangeLog 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/ChangeLog 2016-05-13 18:06:43 UTC (rev 200863)
@@ -1,3 +1,17 @@
+2016-05-13 Yoav Weiss <[email protected]>
+
+ Turn on WEB_TIMING for all ports
+ https://bugs.webkit.org/show_bug.cgi?id=157673
+
+ Reviewed by Alex Christensen.
+
+ Turn on WEB_TIMING by default on the cmake Mac port, to match it with all other ports,
+ and make sure that the flag will be on by default for all ports.
+
+ * Source/cmake/OptionsGTK.cmake: Remove the specific private flag for WEB_TIMING.
+ * Source/cmake/OptionsMac.cmake: Remove the specific private flag for WEB_TIMING.
+ * Source/cmake/WebKitFeatures.cmake: Turn on WEB_TIMING for all ports by default.
+
2016-05-12 Csaba Osztrogonác <[email protected]>
Remove ENABLE(ES6_ARROWFUNCTION_SYNTAX) guards
Modified: trunk/Source/cmake/OptionsGTK.cmake (200862 => 200863)
--- trunk/Source/cmake/OptionsGTK.cmake 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/Source/cmake/OptionsGTK.cmake 2016-05-13 18:06:43 UTC (rev 200863)
@@ -172,7 +172,6 @@
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_USERSELECT_ALL PRIVATE ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_USER_MESSAGE_HANDLERS PRIVATE ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_TRACK PRIVATE ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_TIMING PRIVATE ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBGL PRIVATE ON)
# Finalize the value for all options. Do not attempt to use an option before
Modified: trunk/Source/cmake/OptionsMac.cmake (200862 => 200863)
--- trunk/Source/cmake/OptionsMac.cmake 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/Source/cmake/OptionsMac.cmake 2016-05-13 18:06:43 UTC (rev 200863)
@@ -116,7 +116,6 @@
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DEVICE_ORIENTATION PRIVATE OFF)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTL_JIT PRIVATE ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_TIMING PRIVATE OFF)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD PRIVATE OFF)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_IOS_AIRPLAY PRIVATE OFF)
Modified: trunk/Source/cmake/WebKitFeatures.cmake (200862 => 200863)
--- trunk/Source/cmake/WebKitFeatures.cmake 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/Source/cmake/WebKitFeatures.cmake 2016-05-13 18:06:43 UTC (rev 200863)
@@ -197,7 +197,7 @@
WEBKIT_OPTION_DEFINE(ENABLE_WEB_REPLAY "Toggle Web Replay support" PRIVATE OFF)
WEBKIT_OPTION_DEFINE(ENABLE_WEB_RTC "Toggle WebRTC API support" PRIVATE OFF)
WEBKIT_OPTION_DEFINE(ENABLE_WEB_SOCKETS "Toggle Web Sockets support" PRIVATE ON)
- WEBKIT_OPTION_DEFINE(ENABLE_WEB_TIMING "Toggle Web Timing support" PRIVATE OFF)
+ WEBKIT_OPTION_DEFINE(ENABLE_WEB_TIMING "Toggle Web Timing support" PRIVATE ON)
WEBKIT_OPTION_DEFINE(ENABLE_XSLT "Toggle XSLT support" PRIVATE ON)
WEBKIT_OPTION_DEFINE(USE_SYSTEM_MALLOC "Toggle system allocator instead of WebKit's custom allocator" PRIVATE OFF)
Modified: trunk/Tools/ChangeLog (200862 => 200863)
--- trunk/Tools/ChangeLog 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/Tools/ChangeLog 2016-05-13 18:06:43 UTC (rev 200863)
@@ -1,3 +1,12 @@
+2016-05-13 Yoav Weiss <[email protected]>
+
+ Turn on WEB_TIMING for all ports
+ https://bugs.webkit.org/show_bug.cgi?id=157673
+
+ Reviewed by Alex Christensen.
+
+ * Scripts/webkitperl/FeatureList.pm: Make sure that WEB_TIMING is on by default.
+
2016-05-13 Brady Eidson <[email protected]>
Protector Ref/RefPtrs should have a specified naming style.
Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (200862 => 200863)
--- trunk/Tools/Scripts/webkitperl/FeatureList.pm 2016-05-13 17:42:18 UTC (rev 200862)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm 2016-05-13 18:06:43 UTC (rev 200863)
@@ -445,7 +445,7 @@
define => "ENABLE_WEB_SOCKETS", default => 1, value => \$webSocketsSupport },
{ option => "web-timing", desc => "Toggle Web Timing support",
- define => "ENABLE_WEB_TIMING", default => (isGtk() || isEfl()), value => \$webTimingSupport },
+ define => "ENABLE_WEB_TIMING", default => 1, value => \$webTimingSupport },
{ option => "xslt", desc => "Toggle XSLT support",
define => "ENABLE_XSLT", default => 1, value => \$xsltSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes