OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//mojo/tools/embed/rules.gni") | 7 import("//mojo/tools/embed/rules.gni") |
8 | 8 |
9 # Trusted code | 9 # Trusted code |
10 if (!is_nacl) { | 10 if (!is_nacl) { |
(...skipping 17 matching lines...) Expand all Loading... |
28 "//native_client/src/nonsfi/loader:elf_loader", | 28 "//native_client/src/nonsfi/loader:elf_loader", |
29 ] | 29 ] |
30 } | 30 } |
31 mojo_native_application("content_handler_pexe_32_bit") { | 31 mojo_native_application("content_handler_pexe_32_bit") { |
32 output_name = "content_handler_nonsfi_pexe" | 32 output_name = "content_handler_nonsfi_pexe" |
33 sources = [ | 33 sources = [ |
34 "content_handler_main_pexe.cc", | 34 "content_handler_main_pexe.cc", |
35 ] | 35 ] |
36 | 36 |
37 deps = [ | 37 deps = [ |
38 ":pnacl_translator_bindings", | 38 ":pnacl_translator_bindings_sync", |
39 "//base", | 39 "//base", |
40 "//mojo/application:application", | 40 "//mojo/application:application", |
41 "//mojo/application:content_handler", | 41 "//mojo/application:content_handler", |
42 "//mojo/data_pipe_utils", | 42 "//mojo/data_pipe_utils", |
43 "//mojo/file_utils", | 43 "//mojo/file_utils", |
44 "//mojo/message_pump", | 44 "//mojo/message_pump", |
45 "//mojo/nacl/nonsfi:irt_mojo", | 45 "//mojo/nacl/nonsfi:irt_mojo", |
46 "//mojo/services/files/interfaces", | 46 "//mojo/services/files/interfaces", |
47 "//mojo/services/files/interfaces:interfaces_sync", | 47 "//mojo/services/files/interfaces:interfaces_sync", |
48 "//native_client/src/nonsfi/loader:elf_loader", | 48 "//native_client/src/nonsfi/loader:elf_loader", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 ":libpnacl_irt_shim_dummy_file", | 202 ":libpnacl_irt_shim_dummy_file", |
203 ] | 203 ] |
204 } | 204 } |
205 | 205 |
206 mojom("pnacl_translator_bindings") { | 206 mojom("pnacl_translator_bindings") { |
207 sources = [ | 207 sources = [ |
208 "pnacl_compile.mojom", | 208 "pnacl_compile.mojom", |
209 "pnacl_link.mojom", | 209 "pnacl_link.mojom", |
210 ] | 210 ] |
211 } | 211 } |
OLD | NEW |