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

Unified Diff: native_client_sdk/src/tools/common.mk

Issue 14500010: [NaCl SDK] Google Drive example (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove key from build_app generated manifest Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/src/examples/resources/manifest.json.template ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/tools/common.mk
diff --git a/native_client_sdk/src/tools/common.mk b/native_client_sdk/src/tools/common.mk
index 8045a061a1096c0c72b10f166a1d8dea917bde50..f9e13ce7ab8930236ac12d56eddb8c957005c93b 100644
--- a/native_client_sdk/src/tools/common.mk
+++ b/native_client_sdk/src/tools/common.mk
@@ -209,7 +209,8 @@ LIBDIR ?= $(NACL_SDK_ROOT)/lib
.PHONY: clean
clean:
$(RM) -f $(TARGET).nmf
- $(RM) -fr $(OUTDIR)
+ $(RM) -rf $(OUTDIR)
+ $(RM) -rf user-data-dir
#
@@ -396,7 +397,8 @@ RUN_PY := python $(NACL_SDK_ROOT)/tools/run.py
CHROME_ENV ?=
# Additional arguments to pass to Chrome.
-CHROME_ARGS += --enable-nacl --enable-pnacl --incognito --ppapi-out-of-process
+CHROME_ARGS += --enable-nacl --enable-pnacl --no-first-run
+CHROME_ARGS += --user-data-dir=$(CURDIR)/user-data-dir
# Paths to Debug and Release versions of the Host Pepper plugins
@@ -418,7 +420,7 @@ endif
.PHONY: run_package
run_package: check_for_chrome all
- $(CHROME_PATH) --load-and-launch-app=$(CURDIR) --enable-nacl --enable-pnacl
+ $(CHROME_PATH) --load-and-launch-app=$(CURDIR) $(CHROME_ARGS)
SYSARCH = $(shell python $(NACL_SDK_ROOT)/tools/getos.py --nacl-arch)
« no previous file with comments | « native_client_sdk/src/examples/resources/manifest.json.template ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698