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

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

Issue 2262743002: DevTools: Run devtools tests in release mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add flag Created 4 years, 4 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: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index 7dda2713a136d962d26d30dbdd9d047e1dc6927d..56e5fd135282297833002651ecdd3900fe48ee15 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -271,6 +271,12 @@ def parse_args(args):
"--child-processes",
help="Number of drivers to run in parallel."),
optparse.make_option(
+ "--debug-devtools",
pfeldman 2016/08/24 00:36:04 drop it, we have too many flags already.
chenwilliam 2016/08/24 22:53:40 Done.
+ dest="debug_devtools",
+ action="store_true",
+ default=False,
+ help="Run devtools tests in debug mode (not bundled and minified)"),
+ optparse.make_option(
"--enable-wptserve",
dest="enable_wptserve",
action="store_true",

Powered by Google App Engine
This is Rietveld 408576698