Changeset 280397 in webkit


Ignore:
Timestamp:
Jul 28, 2021, 1:07:23 PM (4 years ago)
Author:
timothy_horton@apple.com
Message:

iOS Simulator doesn't have any WebKit system feature flags
https://bugs.webkit.org/show_bug.cgi?id=228557
rdar://80991854

Reviewed by Darin Adler.

  • Scripts/generate-feature-flags-plist.sh:

Install iOS feature flags for the simulator (and watchOS and tvOS for their respective simulators).
This was causing on-by-default features like GPUP to be disabled in the simulator.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r280385 r280397  
     12021-07-28  Tim Horton  <timothy_horton@apple.com>
     2
     3        iOS Simulator doesn't have any WebKit system feature flags
     4        https://bugs.webkit.org/show_bug.cgi?id=228557
     5        rdar://80991854
     6
     7        Reviewed by Darin Adler.
     8
     9        * Scripts/generate-feature-flags-plist.sh:
     10        Install iOS feature flags for the simulator (and watchOS and tvOS for their respective simulators).
     11        This was causing on-by-default features like GPUP to be disabled in the simulator.
     12
    1132021-07-28  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebKit/Scripts/generate-feature-flags-plist.sh

    r271498 r280397  
    2626set -e
    2727
    28 if [[ ${WK_PLATFORM_NAME} == "appletvos" ]]; then
     28if [[ ${WK_PLATFORM_NAME} == "appletvos" || ${WK_PLATFORM_NAME} == "appletvsimulator" ]]; then
    2929    WEBKIT_PLIST_FILE_NAME="WebKit-appletvos.plist"
    30 elif [[ ${WK_PLATFORM_NAME} == "iphoneos" ]]; then
     30elif [[ ${WK_PLATFORM_NAME} == "iphoneos" || ${WK_PLATFORM_NAME} == "iphonesimulator" ]]; then
    3131    WEBKIT_PLIST_FILE_NAME="WebKit-ios.plist"
    3232elif [[ ${WK_PLATFORM_NAME} == "macosx" ]]; then
    3333    WEBKIT_PLIST_FILE_NAME="WebKit-macos.plist"
    34 elif [[ ${WK_PLATFORM_NAME} == "watchos" ]]; then
     34elif [[ ${WK_PLATFORM_NAME} == "watchos" || ${WK_PLATFORM_NAME} == "watchsimulator" ]]; then
    3535    WEBKIT_PLIST_FILE_NAME="WebKit-watchos.plist"
    3636else
Note: See TracChangeset for help on using the changeset viewer.