Title: [173647] trunk/Tools
Revision
173647
Author
[email protected]
Date
2014-09-15 20:50:13 -0700 (Mon, 15 Sep 2014)

Log Message

Remove ORWT related crufts from webkitdirs.pm
https://bugs.webkit.org/show_bug.cgi?id=136821

Patch by Tibor Meszaros <[email protected]> on 2014-09-15
Reviewed by Alexey Proskuryakov.

* Scripts/webkitdirs.pm:
(isPerianInstalled): Deleted.
(determineIPhoneSimulatorVersion): Deleted.
(iPhoneSimulatorVersion): Deleted.
(isSnowLeopard): Deleted.
(isLion): Deleted.
(quitIOSSimulator): Deleted.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (173646 => 173647)


--- trunk/Tools/ChangeLog	2014-09-16 02:30:17 UTC (rev 173646)
+++ trunk/Tools/ChangeLog	2014-09-16 03:50:13 UTC (rev 173647)
@@ -1,3 +1,18 @@
+2014-09-15  Tibor Meszaros  <[email protected]>
+
+        Remove ORWT related crufts from webkitdirs.pm
+        https://bugs.webkit.org/show_bug.cgi?id=136821
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitdirs.pm:
+        (isPerianInstalled): Deleted.
+        (determineIPhoneSimulatorVersion): Deleted.
+        (iPhoneSimulatorVersion): Deleted.
+        (isSnowLeopard): Deleted.
+        (isLion): Deleted.
+        (quitIOSSimulator): Deleted.
+
 2014-09-15  Roger Fong  <[email protected]>
 
         Unreviewed. Skip yet another ecma/Date test that fails only on Windows.

Modified: trunk/Tools/Scripts/webkitdirs.pm (173646 => 173647)


--- trunk/Tools/Scripts/webkitdirs.pm	2014-09-16 02:30:17 UTC (rev 173646)
+++ trunk/Tools/Scripts/webkitdirs.pm	2014-09-16 03:50:13 UTC (rev 173647)
@@ -101,7 +101,6 @@
 my $sourceDir;
 my $currentSVNRevision;
 my $debugger;
-my $iPhoneSimulatorVersion;
 my $didLoadIPhoneSimulatorNotification;
 my $nmPath;
 my $osXVersion;
@@ -1181,48 +1180,6 @@
     return isAppleMacWebKit() && (willUseIOSDeviceSDKWhenBuilding() || willUseIOSSimulatorSDKWhenBuilding());
 }
 
-sub isPerianInstalled()
-{
-    if (!isAppleWebKit()) {
-        return 0;
-    }
-
-    if (-d "/Library/QuickTime/Perian.component") {
-        return 1;
-    }
-
-    if (-d "$ENV{HOME}/Library/QuickTime/Perian.component") {
-        return 1;
-    }
-
-    return 0;
-}
-
-sub determineIPhoneSimulatorVersion()
-{
-    return if $iPhoneSimulatorVersion;
-
-    if (!isIOSWebKit()) {
-        $iPhoneSimulatorVersion = -1;
-        return;
-    }
-
-    my $version = `/usr/local/bin/psw_vers -productVersion`;
-    my @splitVersion = split(/\./, $version);
-    @splitVersion >= 2 or die "Invalid version $version";
-    $iPhoneSimulatorVersion = {
-            "major" => $splitVersion[0],
-            "minor" => $splitVersion[1],
-            "subminor" => defined($splitVersion[2] ? $splitVersion[2] : 0),
-    };
-}
-
-sub iPhoneSimulatorVersion()
-{
-    determineIPhoneSimulatorVersion();
-    return $iPhoneSimulatorVersion;
-}
-
 sub determineNmPath()
 {
     return if $nmPath;
@@ -1265,16 +1222,6 @@
     return $osXVersion;
 }
 
-sub isSnowLeopard()
-{
-    return isDarwin() && osXVersion()->{"minor"} == 6;
-}
-
-sub isLion()
-{
-    return isDarwin() && osXVersion()->{"minor"} == 7;
-}
-
 sub isWindowsNT()
 {
     return $ENV{'OS'} eq 'Windows_NT';
@@ -2127,11 +2074,6 @@
     $iPhoneSimulatorNotification->stopObservingReadyNotification();
 }
 
-sub quitIOSSimulator()
-{
-    return system {"osascript"} "osascript", "-e", 'tell application "iOS Simulator" to quit';
-}
-
 sub iosSimulatorDeviceByName($)
 {
     my ($simulatorName) = @_;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to