Changeset 280397 in webkit
- Timestamp:
- Jul 28, 2021, 1:07:23 PM (4 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r280385 r280397 1 2021-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 1 13 2021-07-28 Alex Christensen <achristensen@webkit.org> 2 14 -
trunk/Source/WebKit/Scripts/generate-feature-flags-plist.sh
r271498 r280397 26 26 set -e 27 27 28 if [[ ${WK_PLATFORM_NAME} == "appletvos" ]]; then28 if [[ ${WK_PLATFORM_NAME} == "appletvos" || ${WK_PLATFORM_NAME} == "appletvsimulator" ]]; then 29 29 WEBKIT_PLIST_FILE_NAME="WebKit-appletvos.plist" 30 elif [[ ${WK_PLATFORM_NAME} == "iphoneos" ]]; then30 elif [[ ${WK_PLATFORM_NAME} == "iphoneos" || ${WK_PLATFORM_NAME} == "iphonesimulator" ]]; then 31 31 WEBKIT_PLIST_FILE_NAME="WebKit-ios.plist" 32 32 elif [[ ${WK_PLATFORM_NAME} == "macosx" ]]; then 33 33 WEBKIT_PLIST_FILE_NAME="WebKit-macos.plist" 34 elif [[ ${WK_PLATFORM_NAME} == "watchos" ]]; then34 elif [[ ${WK_PLATFORM_NAME} == "watchos" || ${WK_PLATFORM_NAME} == "watchsimulator" ]]; then 35 35 WEBKIT_PLIST_FILE_NAME="WebKit-watchos.plist" 36 36 else
Note:
See TracChangeset
for help on using the changeset viewer.