| Index: webkit/tools/layout_tests/run_http_server.py
|
| diff --git a/webkit/tools/layout_tests/run_http_server.py b/webkit/tools/layout_tests/run_http_server.py
|
| index 45c80405f383a5e8cedcbfd2dc8a73a280cf05cf..d7eadc69f1f92647dde6934a9aaaeaed53e9e766 100644
|
| --- a/webkit/tools/layout_tests/run_http_server.py
|
| +++ b/webkit/tools/layout_tests/run_http_server.py
|
| @@ -4,7 +4,7 @@
|
| # found in the LICENSE file.
|
|
|
| """Wrapper around
|
| - third_party/WebKit/WebKitTools/Scripts/new-run-webkit-httpd"""
|
| + third_party/WebKit/Tools/Scripts/new-run-webkit-httpd"""
|
| import os
|
| import subprocess
|
| import sys
|
| @@ -13,7 +13,7 @@ def main():
|
| cmd = [sys.executable]
|
| src_dir=os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(
|
| os.path.dirname(os.path.abspath(sys.argv[0]))))))
|
| - script_dir=os.path.join(src_dir, "third_party", "WebKit", "WebKitTools",
|
| + script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
|
| "Scripts")
|
| script = os.path.join(script_dir, 'new-run-webkit-httpd')
|
| cmd.append(script)
|
| @@ -22,4 +22,3 @@ def main():
|
|
|
| if __name__ == '__main__':
|
| sys.exit(main())
|
| -
|
|
|