- Revision
- 249208
- Author
- [email protected]
- Date
- 2019-08-28 10:40:26 -0700 (Wed, 28 Aug 2019)
Log Message
Remove support for macOS < 10.13 (part 2)
https://bugs.webkit.org/show_bug.cgi?id=201197
<rdar://problem/54759985>
Source/_javascript_Core:
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
Reviewed by Darin Adler.
* Configurations/FeatureDefines.xcconfig:
Source/WebCore:
Reviewed by Darin Adler.
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
No new tests -- no new or changed functionality.
* Configurations/FeatureDefines.xcconfig:
Source/WebCore/PAL:
Reviewed by Darin Adler.
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
* Configurations/FeatureDefines.xcconfig:
Source/WebKit:
Reviewed by Darin Adler.
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
* Configurations/FeatureDefines.xcconfig:
* Configurations/WebKit.xcconfig:
Source/WebKitLegacy/mac:
Reviewed by Darin Adler.
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
* Configurations/FeatureDefines.xcconfig:
Tools:
Reviewed by Darin Adler.
Update conditionals that reference WK_MACOS_1013 and suffixes like
_MACOS_SINCE_1013, assuming that we're always building on 10.13 or
later and that these conditionals are always True or False.
See Bug 200694 for earlier changes in this area.
* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (249207 => 249208)
--- trunk/Source/_javascript_Core/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/_javascript_Core/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,19 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ Reviewed by Darin Adler.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2019-08-28 Mark Lam <[email protected]>
Gardening: Rebase test results after r249175.
Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;
Modified: trunk/Source/WebCore/ChangeLog (249207 => 249208)
--- trunk/Source/WebCore/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebCore/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,21 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Reviewed by Darin Adler.
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ No new tests -- no new or changed functionality.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2019-08-28 Chris Dumez <[email protected]>
geolocation.watchPosition() / getCurrentPosition() should return PERMISSION_DENIED when context is not secure
Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;
Modified: trunk/Source/WebCore/PAL/ChangeLog (249207 => 249208)
--- trunk/Source/WebCore/PAL/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebCore/PAL/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,19 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Reviewed by Darin Adler.
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2019-08-26 Jiewen Tan <[email protected]>
[WebAuthn] Support HID authenticators on iOS
Modified: trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;
Modified: trunk/Source/WebKit/ChangeLog (249207 => 249208)
--- trunk/Source/WebKit/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebKit/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,20 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Reviewed by Darin Adler.
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ * Configurations/FeatureDefines.xcconfig:
+ * Configurations/WebKit.xcconfig:
+
2019-08-28 Chris Dumez <[email protected]>
Have WebPageProxy generate the page identifier by itself
Modified: trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;
Modified: trunk/Source/WebKit/Configurations/WebKit.xcconfig (249207 => 249208)
--- trunk/Source/WebKit/Configurations/WebKit.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebKit/Configurations/WebKit.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -112,8 +112,7 @@
WK_SAFE_BROWSING_LDFLAGS_iphonesimulator[sdk=iphone*10.*] = ;
WK_SAFE_BROWSING_LDFLAGS_watchos = -framework SafariSafeBrowsing;
WK_SAFE_BROWSING_LDFLAGS_watchsimulator = -framework SafariSafeBrowsing;
-WK_SAFE_BROWSING_LDFLAGS_macosx = $(WK_SAFE_BROWSING_LDFLAGS$(WK_MACOS_1013));
-WK_SAFE_BROWSING_LDFLAGS_MACOS_SINCE_1013 = -weak_framework SafariSafeBrowsing;
+WK_SAFE_BROWSING_LDFLAGS_macosx = -weak_framework SafariSafeBrowsing;
WK_SECURITY_INTERFACE_LDFLAGS = $(WK_SECURITY_INTERFACE_LDFLAGS_$(WK_PLATFORM_NAME));
WK_SECURITY_INTERFACE_LDFLAGS_macosx = -framework SecurityInterface;
Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (249207 => 249208)
--- trunk/Source/WebKitLegacy/mac/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,19 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Reviewed by Darin Adler.
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2019-08-27 Mark Lam <[email protected]>
Refactor to use VM& instead of VM* at as many places as possible.
Modified: trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;
Modified: trunk/Tools/ChangeLog (249207 => 249208)
--- trunk/Tools/ChangeLog 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Tools/ChangeLog 2019-08-28 17:40:26 UTC (rev 249208)
@@ -1,3 +1,19 @@
+2019-08-28 Keith Rollin <[email protected]>
+
+ Remove support for macOS < 10.13 (part 2)
+ https://bugs.webkit.org/show_bug.cgi?id=201197
+ <rdar://problem/54759985>
+
+ Reviewed by Darin Adler.
+
+ Update conditionals that reference WK_MACOS_1013 and suffixes like
+ _MACOS_SINCE_1013, assuming that we're always building on 10.13 or
+ later and that these conditionals are always True or False.
+
+ See Bug 200694 for earlier changes in this area.
+
+ * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
2019-08-28 Alicia Boya GarcĂa <[email protected]>
[MSE][GStreamer] WebKitMediaSrc rework
Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (249207 => 249208)
--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig 2019-08-28 17:20:00 UTC (rev 249207)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig 2019-08-28 17:40:26 UTC (rev 249208)
@@ -47,8 +47,7 @@
ENABLE_APPLE_PAY_SESSION_V3 = $(ENABLE_APPLE_PAY_SESSION_V3_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V3_iphoneos = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V3_iphonesimulator = ENABLE_APPLE_PAY_SESSION_V3;
-ENABLE_APPLE_PAY_SESSION_V3_macosx = $(ENABLE_APPLE_PAY_SESSION_V3$(WK_MACOS_1013));
-ENABLE_APPLE_PAY_SESSION_V3_MACOS_SINCE_1013 = ENABLE_APPLE_PAY_SESSION_V3;
+ENABLE_APPLE_PAY_SESSION_V3_macosx = ENABLE_APPLE_PAY_SESSION_V3;
ENABLE_APPLE_PAY_SESSION_V4 = $(ENABLE_APPLE_PAY_SESSION_V4_$(WK_PLATFORM_NAME));
ENABLE_APPLE_PAY_SESSION_V4_iphoneos = ENABLE_APPLE_PAY_SESSION_V4;
@@ -389,8 +388,7 @@
ENABLE_VARIATION_FONTS_iphoneos = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_iphonesimulator = ENABLE_VARIATION_FONTS;
ENABLE_VARIATION_FONTS_maccatalyst = ENABLE_VARIATION_FONTS;
-ENABLE_VARIATION_FONTS_macosx = $(ENABLE_VARIATION_FONTS$(WK_MACOS_1013));
-ENABLE_VARIATION_FONTS_MACOS_SINCE_1013 = ENABLE_VARIATION_FONTS;
+ENABLE_VARIATION_FONTS_macosx = ENABLE_VARIATION_FONTS;
ENABLE_VIDEO = ENABLE_VIDEO;