Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2281)

Unified Diff: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

Issue 135583003: checkpoint Blink-side work to use Apache on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: first complete patch Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index c92e13172c90a0b1ba6fef10d54e7f76f549b046..824ca1ce1cc151d6c2245be11d276cb72b8c17cd 100644
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -253,6 +253,10 @@ def parse_args(args):
help="Print detailed logging of the driver/content_shell"),
optparse.make_option("--disable-breakpad", action="store_true",
help="Don't use breakpad to symbolize unexpected crashes."),
+ optparse.make_option("--use-apache", action="store_true",
+ help="Use Apache instead of LigHTTPd (default is port-specific)."),
+ optparse.make_option("--no-use-apache", action="store_false", dest="use_apache",
+ help="Use LigHTTPd instead of Apache (default is port-specific)."),
]))
option_group_definitions.append(("Miscellaneous Options", [

Powered by Google App Engine
This is Rietveld 408576698