Changeset 258283 in webkit


Ignore:
Timestamp:
Mar 11, 2020 2:02:10 PM (4 years ago)
Author:
achristensen@apple.com
Message:

Enable safe browsing warnings in Mac Catalyst WebKit
https://bugs.webkit.org/show_bug.cgi?id=208944
<rdar://problem/58854302>

Reviewed by Tim Horton.

Source/WebKit:

I manually verified using the steps in the radar that it works as one would hope.

  • Configurations/WebKit.xcconfig:

Source/WTF:

  • wtf/PlatformHave.h:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r258183 r258283  
     12020-03-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Enable safe browsing warnings in Mac Catalyst WebKit
     4        https://bugs.webkit.org/show_bug.cgi?id=208944
     5        <rdar://problem/58854302>
     6
     7        Reviewed by Tim Horton.
     8
     9        * wtf/PlatformHave.h:
     10
    1112020-03-09  Megan Gardner  <megan_gardner@apple.com>
    212
  • trunk/Source/WTF/wtf/PlatformHave.h

    r258183 r258283  
    409409#endif
    410410
    411 #if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WATCHOS)
     411#if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WATCHOS) || PLATFORM(MACCATALYST)
    412412#define HAVE_SAFE_BROWSING 1
    413413#endif
  • trunk/Source/WebKit/ChangeLog

    r258280 r258283  
     12020-03-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Enable safe browsing warnings in Mac Catalyst WebKit
     4        https://bugs.webkit.org/show_bug.cgi?id=208944
     5        <rdar://problem/58854302>
     6
     7        Reviewed by Tim Horton.
     8
     9        I manually verified using the steps in the radar that it works as one would hope.
     10
     11        * Configurations/WebKit.xcconfig:
     12
    1132020-03-11  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebKit/Configurations/WebKit.xcconfig

    r258180 r258283  
    103103WK_SAFE_BROWSING_LDFLAGS_watchos = -framework SafariSafeBrowsing;
    104104WK_SAFE_BROWSING_LDFLAGS_watchsimulator = -framework SafariSafeBrowsing;
     105WK_SAFE_BROWSING_LDFLAGS_maccatalyst = -framework SafariSafeBrowsing;
    105106WK_SAFE_BROWSING_LDFLAGS_macosx = -weak_framework SafariSafeBrowsing;
    106107
Note: See TracChangeset for help on using the changeset viewer.