Index: services/nacl/BUILD.gn |
diff --git a/services/nacl/BUILD.gn b/services/nacl/BUILD.gn |
index 39ae0f649c3df89e3f105fafb965217b3852e07f..c9a095b342fbcf817b2a389ad10ceacde01966f9 100644 |
--- a/services/nacl/BUILD.gn |
+++ b/services/nacl/BUILD.gn |
@@ -25,4 +25,23 @@ if (!is_nacl) { |
data_deps = [ "//nacl_bindings:irt_mojo(//native_client/build/toolchain/nacl:irt_${target_cpu})" ] |
} |
+ |
+ mojo_native_application("nacl_nonsfi_content_handler") { |
+ sources = [ |
+ "nonsfi_content_handler_main.cc", |
Mark Seaborn
2015/09/01 15:55:45
Nit: "monacl_shell_nonsfi.cc" is named with "_nons
Sean Klein
2015/09/01 20:24:47
Done.
|
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//mojo/application:application", |
+ "//mojo/application:content_handler", |
+ "//mojo/data_pipe_utils", |
+ "//mojo/message_pump", |
+ "//mojo/public/platform/nacl:mojo_irt_header", |
+ "//mojo/public/platform/native:system_impl_private", |
+ "//nacl_bindings:monacl_sel", |
Mark Seaborn
2015/09/01 15:55:45
Shouldn't be needed: this refers to SFI NaCl.
Sean Klein
2015/09/01 20:24:47
Done (it was needed for "mojo::NaClExit", which I
|
+ "//native_client/src/nonsfi/irt:irt_interfaces", |
+ "//native_client/src/nonsfi/loader:elf_loader", |
+ ] |
+ } |
} |