diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-23 02:13:43 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-23 02:13:43 +0000 |
commit | 09c98c97e96dc6cd79b1fe47d197615105a653e1 (patch) | |
tree | dd56381d52cdbc65615a5cb90c8ab6dfdf0766c4 /native_client_sdk | |
parent | 2497e5303a7a3105d7c90731a9379592a11e8fd3 (diff) | |
download | chromium_src-09c98c97e96dc6cd79b1fe47d197615105a653e1.zip chromium_src-09c98c97e96dc6cd79b1fe47d197615105a653e1.tar.gz chromium_src-09c98c97e96dc6cd79b1fe47d197615105a653e1.tar.bz2 |
The template for the HMTL files points to incorrect link.
When using LAUNCH_NEXE, the URL provided on the command-line is incorrect.
It should just point to index.html not <PROJECT>.html
BUG=134244
R=binji@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10661013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143785 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rw-r--r-- | native_client_sdk/src/build_tools/template.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native_client_sdk/src/build_tools/template.mk b/native_client_sdk/src/build_tools/template.mk index 67cfc1b..2ea51e8 100644 --- a/native_client_sdk/src/build_tools/template.mk +++ b/native_client_sdk/src/build_tools/template.mk @@ -115,6 +115,6 @@ RUN: all python ../httpd.py LAUNCH_NEXE: CHECK_FOR_CHROME all - $(CHROME_PATH) $(NEXE_ARGS) "localhost:5103/$(PROJECT).html?tool=$(TOOLCHAIN)" + $(CHROME_PATH) $(NEXE_ARGS) "localhost:5103/index.html" __PROJECT_POSTLAUNCH__ |