| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 ":pnacl_translator_bindings", | 38 ":pnacl_translator_bindings", |
| 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", |
| 47 "//mojo/services/files/interfaces:interfaces_sync", |
| 46 "//native_client/src/nonsfi/loader:elf_loader", | 48 "//native_client/src/nonsfi/loader:elf_loader", |
| 47 ] | 49 ] |
| 48 } | 50 } |
| 49 mojo_native_application("pnacl_compile_32_bit") { | 51 mojo_native_application("pnacl_compile_32_bit") { |
| 50 output_name = "pnacl_compile" | 52 output_name = "pnacl_compile" |
| 51 sources = [ | 53 sources = [ |
| 52 "pnacl_compile.cc", | 54 "pnacl_compile.cc", |
| 53 ] | 55 ] |
| 54 | 56 |
| 55 deps = [ | 57 deps = [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 ":libpnacl_irt_shim_dummy_file", | 202 ":libpnacl_irt_shim_dummy_file", |
| 201 ] | 203 ] |
| 202 } | 204 } |
| 203 | 205 |
| 204 mojom("pnacl_translator_bindings") { | 206 mojom("pnacl_translator_bindings") { |
| 205 sources = [ | 207 sources = [ |
| 206 "pnacl_compile.mojom", | 208 "pnacl_compile.mojom", |
| 207 "pnacl_link.mojom", | 209 "pnacl_link.mojom", |
| 208 ] | 210 ] |
| 209 } | 211 } |
| OLD | NEW |