Changeset 231205 in webkit


Ignore:
Timestamp:
May 1, 2018 12:57:17 PM (6 years ago)
Author:
pvollan@apple.com
Message:

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

Reviewed by Brent Fulgham.

Use WK_MACOS_* machinery to determine runloop type for the WebContent process.

  • Configurations/WebContentService.xcconfig:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r231194 r231205  
     12018-05-01  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Use correct runloop type in the WebContent process.
     4        https://bugs.webkit.org/show_bug.cgi?id=185140
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Use WK_MACOS_* machinery to determine runloop type for the WebContent process.
     9
     10        * Configurations/WebContentService.xcconfig:
     11
    1122018-05-01  Oleksandr Skachkov  <gskachkov@gmail.com>
    213
  • trunk/Source/WebKit/Configurations/WebContentService.xcconfig

    r231192 r231205  
    6161WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_YES = $(USE_STAGING_INSTALL_PATH);
    6262
    63 RUNLOOP_TYPE = $(RUNLOOP_TYPE_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
    64 RUNLOOP_TYPE_macosx_101100 = _NSApplicationMain;
    65 RUNLOOP_TYPE_macosx_101200 = _NSApplicationMain;
    66 RUNLOOP_TYPE_macosx_101300 = _NSApplicationMain;
    67 RUNLOOP_TYPE_macosx_101400 = NSRunLoop;
    68 RUNLOOP_TYPE_macosx_101500 = NSRunLoop;
     63RUNLOOP_TYPE = $(RUNLOOP_TYPE$(WK_MACOS_1014));
     64RUNLOOP_TYPE_MACOS_BEFORE_1014 = _NSApplicationMain;
     65RUNLOOP_TYPE_MACOS_SINCE_1014 = NSRunLoop;
Note: See TracChangeset for help on using the changeset viewer.