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

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

Issue 2454323004: Make layout test harness extensible with custom layout tests directory (Closed)
Patch Set: Undo non test harness changes Created 4 years, 1 month 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/port/mac.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py
index 8b23ab170fed198332da01fae497f13e2a8ed472..96c87bd897f3c30585e0283fa3098c94a04b0a65 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py
@@ -101,7 +101,7 @@ class MacPort(base.Port):
def path_to_apache_config_file(self):
config_file_name = 'apache2-httpd-' + self._apache_version() + '.conf'
- return self._filesystem.join(self.layout_tests_dir(), 'http', 'conf', config_file_name)
+ return self._filesystem.join(self.apache_config_directory(), config_file_name)
def _path_to_driver(self, target=None):
return self._build_path_with_target(target, self.driver_name() + '.app', 'Contents', 'MacOS', self.driver_name())

Powered by Google App Engine
This is Rietveld 408576698