Title: [231192] trunk/Source/WebKit
Revision
231192
Author
[email protected]
Date
2018-04-30 19:22:02 -0700 (Mon, 30 Apr 2018)

Log Message

Use correct runloop type in the WebContent process.
https://bugs.webkit.org/show_bug.cgi?id=185140
<rdar://problem/39585037>

Reviewed by Brent Fulgham.

The macOS target version should be used to determine the runloop type.

* Configurations/WebContentService.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (231191 => 231192)


--- trunk/Source/WebKit/ChangeLog	2018-05-01 01:31:00 UTC (rev 231191)
+++ trunk/Source/WebKit/ChangeLog	2018-05-01 02:22:02 UTC (rev 231192)
@@ -1,3 +1,15 @@
+2018-04-30  Per Arne Vollan  <[email protected]>
+
+        Use correct runloop type in the WebContent process.
+        https://bugs.webkit.org/show_bug.cgi?id=185140
+        <rdar://problem/39585037>
+
+        Reviewed by Brent Fulgham.
+
+        The macOS target version should be used to determine the runloop type.
+
+        * Configurations/WebContentService.xcconfig:
+
 2018-04-30  Michael Saboff  <[email protected]>
 
         Eliminate WebProcessShim.dylib

Modified: trunk/Source/WebKit/Configurations/WebContentService.xcconfig (231191 => 231192)


--- trunk/Source/WebKit/Configurations/WebContentService.xcconfig	2018-05-01 01:31:00 UTC (rev 231191)
+++ trunk/Source/WebKit/Configurations/WebContentService.xcconfig	2018-05-01 02:22:02 UTC (rev 231192)
@@ -60,7 +60,9 @@
 WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_NO = $(WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG);
 WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_YES = $(USE_STAGING_INSTALL_PATH);
 
-RUNLOOP_TYPE[sdk=macosx*] = NSRunLoop;
-RUNLOOP_TYPE[sdk=macosx10.13*] = _NSApplicationMain;
-RUNLOOP_TYPE[sdk=macosx10.12*] = _NSApplicationMain;
-RUNLOOP_TYPE[sdk=macosx10.11*] = _NSApplicationMain;
+RUNLOOP_TYPE = $(RUNLOOP_TYPE_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+RUNLOOP_TYPE_macosx_101100 = _NSApplicationMain;
+RUNLOOP_TYPE_macosx_101200 = _NSApplicationMain;
+RUNLOOP_TYPE_macosx_101300 = _NSApplicationMain;
+RUNLOOP_TYPE_macosx_101400 = NSRunLoop;
+RUNLOOP_TYPE_macosx_101500 = NSRunLoop;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to