Changeset 224180 in webkit


Ignore:
Timestamp:
Oct 30, 2017 7:44:25 AM (6 years ago)
Author:
fred.wang@free.fr
Message:

Remove support for running safari on the iOS simulator with Xcode < 9.0
https://bugs.webkit.org/show_bug.cgi?id=178203

Patch by Frederic Wang <fwang@igalia.com> on 2017-10-12
Reviewed by Alexey Proskuryakov.

This is a follow-up of r223234. We no longer support iOS WebKit development for Xcode < 9.0
and do not have any iOS simulator builders in our infrastructure. Hence we can remove the
special case to calculate the iOS simulator applications path for these old versions.

  • Scripts/webkitdirs.pm:

(iosSimulatorApplicationsPath): Remove special case for XCode < 9.0

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r224179 r224180  
     12017-10-12  Frederic Wang  <fwang@igalia.com>
     2
     3        Remove support for running safari on the iOS simulator with Xcode < 9.0
     4        https://bugs.webkit.org/show_bug.cgi?id=178203
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        This is a follow-up of r223234. We no longer support iOS WebKit development for Xcode < 9.0
     9        and do not have any iOS simulator builders in our infrastructure. Hence we can remove the
     10        special case to calculate the iOS simulator applications path for these old versions.
     11
     12        * Scripts/webkitdirs.pm:
     13        (iosSimulatorApplicationsPath): Remove special case for XCode < 9.0
     14
    1152017-10-30  Michael Catanzaro  <mcatanzaro@igalia.com>
    216
  • trunk/Tools/Scripts/webkitdirs.pm

    r224143 r224180  
    24612461sub iosSimulatorApplicationsPath()
    24622462{
    2463     determineXcodeVersion();
    2464     if (eval "v$xcodeVersion" lt v9.0) {
    2465         return File::Spec->catdir(XcodeSDKPath(), "Applications");
    2466     }
    2467 
    24682463    my $iphoneOSPlatformPath = sdkPlatformDirectory("iphoneos");
    24692464    return File::Spec->catdir($iphoneOSPlatformPath, "Developer", "Library", "CoreSimulator", "Profiles", "Runtimes", "iOS.simruntime", "Contents", "Resources", "RuntimeRoot", "Applications");
Note: See TracChangeset for help on using the changeset viewer.