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

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

Issue 2513423003: DevTools: Convert inspector-unit tests to use reusable test harness (Closed)
Patch Set: Moved type definition out of externs Created 4 years 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/servers/apache_http.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/apache_http.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/apache_http.py
index d2a658a9103c53e3c82db6c79220dae01a8a10b7..d1b3e581a47423c035b57f7a1baf49a7ea9902e2 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/apache_http.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/apache_http.py
@@ -63,7 +63,6 @@ class ApacheHTTP(server_base.ServerBase):
mime_types_path = self._filesystem.join(self._port_obj.apache_config_directory(), "mime.types")
cert_file = self._filesystem.join(self._port_obj.apache_config_directory(), "webkit-httpd.pem")
inspector_sources_dir = self._port_obj.inspector_build_directory()
- inspector_debug_dir = self._port_obj.inspector_debug_directory()
self._access_log_path = self._filesystem.join(output_dir, "access_log.txt")
self._error_log_path = self._filesystem.join(output_dir, "error_log.txt")
@@ -87,7 +86,6 @@ class ApacheHTTP(server_base.ServerBase):
'-c', 'PidFile %s' % self._pid_file,
'-c', 'SSLCertificateFile "%s"' % cert_file,
'-c', 'Alias /inspector-sources "%s"' % inspector_sources_dir,
- '-c', 'Alias /inspector-debug "%s"' % inspector_debug_dir,
'-c', 'DefaultType None',
]

Powered by Google App Engine
This is Rietveld 408576698