| OLD | NEW |
| (Empty) |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/mojo_application.gni") | |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | |
| 7 import("//mojo/tools/embed/rules.gni") | |
| 8 | |
| 9 # Trusted code | |
| 10 if (!is_nacl) { | |
| 11 mojo_native_application("content_handler_sfi_nexe") { | |
| 12 sources = [ | |
| 13 "content_handler_main.cc", | |
| 14 ] | |
| 15 | |
| 16 deps = [ | |
| 17 "//base", | |
| 18 "//mojo/application:application", | |
| 19 "//mojo/application:content_handler", | |
| 20 "//mojo/data_pipe_utils", | |
| 21 "//mojo/message_pump", | |
| 22 "//mojo/public/platform/native:system_impl_private", | |
| 23 "//mojo/services/network/interfaces", | |
| 24 "//mojo/nacl/sfi/nacl_bindings:monacl_sel", | |
| 25 "//url", | |
| 26 ] | |
| 27 | |
| 28 data_deps = [ | |
| 29 "//mojo/nacl/sfi/nacl_bindings:irt_mojo(//build/toolchain/nacl:irt_${targe
t_cpu})", | |
| 30 ] | |
| 31 } | |
| 32 } | |
| OLD | NEW |