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

Side by Side Diff: native_client_sdk/src/build_tools/template.mk

Issue 10828357: [NaCl SDK] Fix template.mk to use spaces instead of tabs for non-recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: check for valid page only when launching Created 8 years, 4 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # 5 #
6 # GNU Make based build file. For details on GNU Make see: 6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html 7 # http://www.gnu.org/software/make/manual/make.html
8 # 8 #
9 9
10 # 10 #
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 __PROJECT_RULES__ 108 __PROJECT_RULES__
109 109
110 __PROJECT_PRERUN__ 110 __PROJECT_PRERUN__
111 111
112 RUN: all 112 RUN: all
113 python ../httpd.py 113 python ../httpd.py
114 114
115 CONFIG?=Debug 115 CONFIG?=Debug
116 PAGE?=index_$(TOOLCHAIN)_$(CONFIG).html 116 PAGE?=index_$(TOOLCHAIN)_$(CONFIG).html
117 117
118 LAUNCH: CHECK_FOR_CHROME all
118 ifeq (,$(wildcard $(PAGE))) 119 ifeq (,$(wildcard $(PAGE)))
119 $(warning No valid HTML page found at $(PAGE)) 120 $(warning No valid HTML page found at $(PAGE))
120 $(error Make sure TOOLCHAIN and CONFIG are properly set) 121 $(error Make sure TOOLCHAIN and CONFIG are properly set)
121 endif 122 endif
122
123 LAUNCH: CHECK_FOR_CHROME all
124 $(CHROME_PATH) $(NEXE_ARGS) --register-pepper-plugins="$(PPAPI_DEBUG),$( PPAPI_RELEASE)" localhost:5103/$(PAGE) 123 $(CHROME_PATH) $(NEXE_ARGS) --register-pepper-plugins="$(PPAPI_DEBUG),$( PPAPI_RELEASE)" localhost:5103/$(PAGE)
125 124
126 __PROJECT_POSTLAUNCH__ 125 __PROJECT_POSTLAUNCH__
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698