Commit e7ea4482 authored by thakis@chromium.org's avatar thakis@chromium.org

Rename new-run-webkit-httpd to run-blink-httpd, chromium side.

Now that Blink https://chromiumcodereview.appspot.com/14842006 is rolled
into chromium, the downstream reference to the script can be updated.

BUG=none
TBR=kinuko@chromium.org

Review URL: https://codereview.chromium.org/14664008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198457 0039d316-1c4b-4281-b951-d872f2087c98
parent 509c356a
......@@ -32,7 +32,7 @@ bool PrepareCommandLine(CommandLine* cmd_line) {
script_path = script_path.AppendASCII("WebKit");
script_path = script_path.AppendASCII("Tools");
script_path = script_path.AppendASCII("Scripts");
script_path = script_path.AppendASCII("new-run-webkit-httpd");
script_path = script_path.AppendASCII("run-blink-httpd");
cmd_line->AppendArgPath(script_path);
return true;
......
......@@ -4,7 +4,7 @@
# found in the LICENSE file.
"""Wrapper around
third_party/WebKit/Tools/Scripts/new-run-webkit-httpd"""
third_party/WebKit/Tools/Scripts/run-blink-httpd"""
import os
import subprocess
import sys
......@@ -15,7 +15,7 @@ def main():
os.path.dirname(os.path.abspath(sys.argv[0]))))))
script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
"Scripts")
script = os.path.join(script_dir, 'new-run-webkit-httpd')
script = os.path.join(script_dir, 'run-blink-httpd')
cmd.append(script)
cmd.extend(sys.argv[1:])
return subprocess.call(cmd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment