Title: [208635] trunk/Tools
Revision
208635
Author
commit-qu...@webkit.org
Date
2016-11-11 18:31:31 -0800 (Fri, 11 Nov 2016)

Log Message

Removed unused INCLUDE_OPTIONS_FOR_DEBUGGING
https://bugs.webkit.org/show_bug.cgi?id=164664

Patch by Joseph Pecoraro <pecor...@apple.com> on 2016-11-11
Reviewed by Dan Bernstein.

* Scripts/debug-minibrowser:
* Scripts/debug-safari:
* Scripts/debug-test-runner:
* Scripts/webkitdirs.pm:
(printHelpAndExitForRunAndDebugWebKitAppIfNeeded):
There are no debug specific options anymore.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (208634 => 208635)


--- trunk/Tools/ChangeLog	2016-11-12 02:25:48 UTC (rev 208634)
+++ trunk/Tools/ChangeLog	2016-11-12 02:31:31 UTC (rev 208635)
@@ -1,3 +1,17 @@
+2016-11-11  Joseph Pecoraro  <pecor...@apple.com>
+
+        Removed unused INCLUDE_OPTIONS_FOR_DEBUGGING
+        https://bugs.webkit.org/show_bug.cgi?id=164664
+
+        Reviewed by Dan Bernstein.
+
+        * Scripts/debug-minibrowser:
+        * Scripts/debug-safari:
+        * Scripts/debug-test-runner:
+        * Scripts/webkitdirs.pm:
+        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded):
+        There are no debug specific options anymore.
+
 2016-11-11  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [WK2] autocorrect and autocapitalize attributes do not work in contenteditable elements

Modified: trunk/Tools/Scripts/debug-minibrowser (208634 => 208635)


--- trunk/Tools/Scripts/debug-minibrowser	2016-11-12 02:25:48 UTC (rev 208634)
+++ trunk/Tools/Scripts/debug-minibrowser	2016-11-12 02:31:31 UTC (rev 208635)
@@ -33,7 +33,7 @@
 use lib $FindBin::Bin;
 use webkitdirs;
 
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded(INCLUDE_OPTIONS_FOR_DEBUGGING);
+printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
 
 setConfiguration();
 

Modified: trunk/Tools/Scripts/debug-safari (208634 => 208635)


--- trunk/Tools/Scripts/debug-safari	2016-11-12 02:25:48 UTC (rev 208634)
+++ trunk/Tools/Scripts/debug-safari	2016-11-12 02:31:31 UTC (rev 208635)
@@ -33,7 +33,7 @@
 use lib $FindBin::Bin;
 use webkitdirs;
 
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded(INCLUDE_OPTIONS_FOR_DEBUGGING);
+printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
 
 setConfiguration();
 

Modified: trunk/Tools/Scripts/debug-test-runner (208634 => 208635)


--- trunk/Tools/Scripts/debug-test-runner	2016-11-12 02:25:48 UTC (rev 208634)
+++ trunk/Tools/Scripts/debug-test-runner	2016-11-12 02:31:31 UTC (rev 208635)
@@ -30,7 +30,7 @@
 use lib $FindBin::Bin;
 use webkitdirs;
 
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded(INCLUDE_OPTIONS_FOR_DEBUGGING);
+printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
 
 setConfiguration();
 

Modified: trunk/Tools/Scripts/webkitdirs.pm (208634 => 208635)


--- trunk/Tools/Scripts/webkitdirs.pm	2016-11-12 02:25:48 UTC (rev 208634)
+++ trunk/Tools/Scripts/webkitdirs.pm	2016-11-12 02:31:31 UTC (rev 208635)
@@ -107,7 +107,6 @@
 };
 
 use constant USE_OPEN_COMMAND => 1; # Used in runMacWebKitApp().
-use constant INCLUDE_OPTIONS_FOR_DEBUGGING => 1;
 use constant SIMULATOR_DEVICE_STATE_SHUTDOWN => "1";
 use constant SIMULATOR_DEVICE_STATE_BOOTED => "3";
 use constant SIMULATOR_DEVICE_SUFFIX_FOR_WEBKIT_DEVELOPMENT  => "For WebKit Development";
@@ -2121,8 +2120,6 @@
 {
     return unless checkForArgumentAndRemoveFromARGV("--help");
 
-    my ($includeOptionsForDebugging) = @_;
-
     print STDERR <<EOF;
 Usage: @{[basename($0)]} [options] [args ...]
   --help                            Show this help message
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to