| 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 # Trusted code | 5 # Trusted code |
| 6 if (!is_nacl) { | 6 if (!is_nacl) { |
| 7 # A simple shell for running untrusted binaries that talk to the Mojo | 7 # A simple shell for running untrusted binaries that talk to the Mojo |
| 8 # embedder. (No services.) | 8 # embedder. (No services.) |
| 9 if (current_cpu == "x86" || current_cpu == "arm") { | 9 if (current_cpu == "x86" || current_cpu == "arm") { |
| 10 # Non-SFI NaCl currently supports x86-32 and ARMv7, but not anything 64-bit. | 10 # Non-SFI NaCl currently supports x86-32 and ARMv7, but not anything 64-bit. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "irt_mojo_nonsfi.cc", | 46 "irt_mojo_nonsfi.cc", |
| 47 "irt_mojo_nonsfi.h", | 47 "irt_mojo_nonsfi.h", |
| 48 "irt_pnacl_translator_compile.cc", | 48 "irt_pnacl_translator_compile.cc", |
| 49 "irt_pnacl_translator_link.cc", | 49 "irt_pnacl_translator_link.cc", |
| 50 "irt_resource_open.cc", | 50 "irt_resource_open.cc", |
| 51 "nexe_launcher_nonsfi.cc", | 51 "nexe_launcher_nonsfi.cc", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 "//base", | 55 "//base", |
| 56 "//mojo/public/c/gpu:MGL", | 56 "//mojo/public/c:MGL", |
| 57 "//mojo/public/c/gpu:MGL_onscreen", | 57 "//mojo/public/c:MGL_onscreen", |
| 58 "//mojo/public/c/gpu:MGL_signal_sync_point", | 58 "//mojo/public/c:MGL_signal_sync_point", |
| 59 "//mojo/public/cpp/bindings", | 59 "//mojo/public/cpp/bindings", |
| 60 "//mojo/public/cpp/utility", | 60 "//mojo/public/cpp/utility", |
| 61 "//mojo/public/platform/nacl:mojo_irt_header", | 61 "//mojo/public/platform/nacl:mojo_irt_header", |
| 62 "//mojo/public/platform/native:mgl_onscreen_thunks", | 62 "//mojo/public/platform/native:mgl_onscreen_thunks", |
| 63 "//mojo/public/platform/native:mgl_thunks", | 63 "//mojo/public/platform/native:mgl_thunks", |
| 64 "//mojo/services/files/interfaces", | 64 "//mojo/services/files/interfaces", |
| 65 "//native_client/src/nonsfi/irt:irt_interfaces", | 65 "//native_client/src/nonsfi/irt:irt_interfaces", |
| 66 "//services/nacl/nonsfi:pnacl_translator_irt", | 66 "//services/nacl/nonsfi:pnacl_translator_irt", |
| 67 ] | 67 ] |
| 68 | 68 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 ] | 156 ] |
| 157 } | 157 } |
| 158 | 158 |
| 159 group("mojo_nacl_tests_nonsfi") { | 159 group("mojo_nacl_tests_nonsfi") { |
| 160 testonly = true | 160 testonly = true |
| 161 deps = [ | 161 deps = [ |
| 162 ":monacl_shell_x86", | 162 ":monacl_shell_x86", |
| 163 ":monacl_test_nexes", | 163 ":monacl_test_nexes", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| OLD | NEW |