Title: [215217] trunk
Revision
215217
Author
achristen...@apple.com
Date
2017-04-10 22:05:33 -0700 (Mon, 10 Apr 2017)

Log Message

Continue enabling WebRTC
https://bugs.webkit.org/show_bug.cgi?id=170703

Reviewed by Youenn Fablet.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore/PAL:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

* Configurations/FeatureDefines.xcconfig:

Tools:

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (215216 => 215217)


--- trunk/Source/_javascript_Core/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,3 +1,12 @@
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-10  Mark Lam  <mark....@apple.com>
 
         Move ProbeContext and ProbeFunction out of AbstractMacroAssembler.

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;

Modified: trunk/Source/WebCore/ChangeLog (215216 => 215217)


--- trunk/Source/WebCore/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebCore/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,3 +1,12 @@
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-10  Jeremy Jones  <jere...@apple.com>
 
         PlayerLayerView +layerClass methods should use return type Class.

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;

Modified: trunk/Source/WebCore/PAL/ChangeLog (215216 => 215217)


--- trunk/Source/WebCore/PAL/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebCore/PAL/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,3 +1,12 @@
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-08  Youenn Fablet  <you...@apple.com>
 
         WebRTC tests gardening

Modified: trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;

Modified: trunk/Source/WebKit/mac/ChangeLog (215216 => 215217)


--- trunk/Source/WebKit/mac/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebKit/mac/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,3 +1,12 @@
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-10  Anders Carlsson  <ander...@apple.com>
 
         Remove call to WKShowKeyAndMain

Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;

Modified: trunk/Source/WebKit2/ChangeLog (215216 => 215217)


--- trunk/Source/WebKit2/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebKit2/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,5 +1,14 @@
 2017-04-10  Alex Christensen  <achristen...@webkit.org>
 
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * Configurations/FeatureDefines.xcconfig:
+
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
         REGRESSION(r195479) First main resource load in new WebProcess bypasses content extensions
         https://bugs.webkit.org/show_bug.cgi?id=170707
         <rdar://problem/27788755>

Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;

Modified: trunk/Tools/ChangeLog (215216 => 215217)


--- trunk/Tools/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Tools/ChangeLog	2017-04-11 05:05:33 UTC (rev 215217)
@@ -1,3 +1,12 @@
+2017-04-10  Alex Christensen  <achristen...@webkit.org>
+
+        Continue enabling WebRTC
+        https://bugs.webkit.org/show_bug.cgi?id=170703
+
+        Reviewed by Youenn Fablet.
+
+        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
 2017-04-10  Kocsen Chung  <kocsen_ch...@apple.com>
 
         Have parseRevisionProperty use default repo name as the Buildbot key.

Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (215216 => 215217)


--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-04-11 04:57:59 UTC (rev 215216)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-04-11 05:05:33 UTC (rev 215217)
@@ -197,6 +197,7 @@
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Release = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production = $(ENABLE_WEB_RTC_macosx_Production_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_WEB_RTC_macosx_Production_101100 = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC_macosx_Production_101300 = ENABLE_WEB_RTC;
 
 ENABLE_WRITABLE_STREAM_API = ENABLE_WRITABLE_STREAM_API;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to