⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243683 in webkit


Ignore:
Timestamp:
Mar 31, 2019, 12:29:56 PM (7 years ago)
Author:
weinig@apple.com
Message:

Remove more i386 specific configurations
https://bugs.webkit.org/show_bug.cgi?id=196430

Reviewed by Alexey Proskuryakov.

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.

  • Configurations/ToolExecutable.xcconfig:

ARC can be enabled unconditionally now.

Source/WebCore:

  • Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.

Source/WebCore/PAL:

  • Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.

Source/WebKit:

  • Configurations/BaseTarget.xcconfig:

WK_HAVE_CORE_PREDICTION can now be enabled unconditionally.

  • Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.

Source/WebKitLegacy/mac:

  • Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.

Tools:

  • TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

ENABLE_WEB_AUTHN_macosx and ENABLE_WEB_RTC_macosx can now be enabled unconditionally on macOS.

Location:
trunk
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r243672 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9        ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.
     10
     11        * Configurations/ToolExecutable.xcconfig:
     12        ARC can be enabled unconditionally now.
     13
    1142019-03-29  Yusuke Suzuki  <ysuzuki@apple.com>
    215
  • trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r237881 r243683  
    4444
    4545CLANG_ENABLE_OBJC_ARC = YES;
    46 CLANG_ENABLE_OBJC_ARC[sdk=macosx*][arch=i386] = NO;
    4746
    4847OTHER_CFLAGS = $(ASAN_OTHER_CFLAGS) -isystem icu;
  • trunk/Source/WebCore/ChangeLog

    r243682 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9        ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.
     10
    1112019-03-31  Andy Estes  <aestes@apple.com>
    212
  • trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
  • trunk/Source/WebCore/PAL/ChangeLog

    r243666 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9        ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.
     10
    1112019-03-29  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
  • trunk/Source/WebKit/ChangeLog

    r243682 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Configurations/BaseTarget.xcconfig:
     9        WK_HAVE_CORE_PREDICTION can now be enabled unconditionally.
     10 
     11        * Configurations/FeatureDefines.xcconfig:
     12        ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.
     13
    1142019-03-31  Andy Estes  <aestes@apple.com>
    215
  • trunk/Source/WebKit/Configurations/BaseTarget.xcconfig

    r243567 r243683  
    108108
    109109WK_HAVE_CORE_PREDICTION = YES;
    110 WK_HAVE_CORE_PREDICTION[sdk=macosx*][arch=i386] = NO;
    111110
    112111WK_CORE_PREDICTION_DEFINES = $(WK_CORE_PREDICTION_DEFINES_$(WK_HAVE_CORE_PREDICTION));
  • trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r243666 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9        ENABLE_WEB_AUTHN_macosx can now be enabled unconditionally on macOS.
     10
    1112019-03-29  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
  • trunk/Tools/ChangeLog

    r243682 r243683  
     12019-03-31  Sam Weinig  <weinig@apple.com>
     2
     3        Remove more i386 specific configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=196430
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
     9        ENABLE_WEB_AUTHN_macosx and ENABLE_WEB_RTC_macosx can now be enabled unconditionally on macOS.
     10
    1112019-03-31  Andy Estes  <aestes@apple.com>
    212
  • trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig

    r243666 r243683  
    397397ENABLE_WEB_AUTHN_iphoneos = ENABLE_WEB_AUTHN;
    398398ENABLE_WEB_AUTHN_iphonesimulator = ENABLE_WEB_AUTHN;
    399 ENABLE_WEB_AUTHN_macosx[arch=x86_64] = ENABLE_WEB_AUTHN;
     399ENABLE_WEB_AUTHN_macosx = ENABLE_WEB_AUTHN;
    400400
    401401ENABLE_WEB_RTC = $(ENABLE_WEB_RTC_$(WK_PLATFORM_NAME));
    402402ENABLE_WEB_RTC_iphoneos = ENABLE_WEB_RTC;
    403403ENABLE_WEB_RTC_iphonesimulator = ENABLE_WEB_RTC;
    404 ENABLE_WEB_RTC_macosx[arch=x86_64] = ENABLE_WEB_RTC;
     404ENABLE_WEB_RTC_macosx = ENABLE_WEB_RTC;
    405405
    406406ENABLE_WIRELESS_PLAYBACK_TARGET = ENABLE_WIRELESS_PLAYBACK_TARGET;
Note: See TracChangeset for help on using the changeset viewer.