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

Unified Diff: mojo/public/mojo_application.gni

Issue 1382713002: Creating a pexe content handler to translate and run pexes. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 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
Index: mojo/public/mojo_application.gni
diff --git a/mojo/public/mojo_application.gni b/mojo/public/mojo_application.gni
index 9b759c1fc9b21d4d45b870c4e0478b2fa0d07cd4..faf9d096db54bdc44b3fd5c499b5610ef573d0b1 100644
--- a/mojo/public/mojo_application.gni
+++ b/mojo/public/mojo_application.gni
@@ -218,11 +218,11 @@ template("mojo_native_application") {
if (current_cpu == "pnacl") {
input_file_extension = ".pexe"
output_file_extension = ".pexe.mojo"
- content_handler = "pexe_content_handler"
+ content_handler = "content_handler_nonsfi_pexe"
} else {
input_file_extension = ".nexe"
output_file_extension = "_${target_cpu}.nexe.mojo"
- content_handler = "nacl_content_handler"
+ content_handler = "content_handler_sfi"
}
input_file = "${base_target_name}${input_file_extension}"
output_file = "${base_target_name}${output_file_extension}"

Powered by Google App Engine
This is Rietveld 408576698