diff options
-rw-r--r-- | chrome/test/ui/ui_test.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc index 6a52780..08ed51e 100644 --- a/chrome/test/ui/ui_test.cc +++ b/chrome/test/ui/ui_test.cc @@ -287,13 +287,12 @@ static CommandLine* CreateHttpServerCommandLine() { PathService::Get(base::DIR_SOURCE_ROOT, &src_path); FilePath script_path(src_path); - script_path = script_path.AppendASCII("third_party"); - script_path = script_path.AppendASCII("WebKit"); - script_path = script_path.AppendASCII("WebKitTools"); - script_path = script_path.AppendASCII("Scripts"); + script_path = script_path.AppendASCII("webkit"); + script_path = script_path.AppendASCII("tools"); + script_path = script_path.AppendASCII("layout_tests"); script_path = script_path.AppendASCII("webkitpy"); script_path = script_path.AppendASCII("layout_tests"); - script_path = script_path.AppendASCII("port"); + script_path = script_path.AppendASCII("layout_package"); script_path = script_path.AppendASCII("http_server.py"); CommandLine* cmd_line = CreatePythonCommandLine(); |