| 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 executable("monacl_shell") { | 9 executable("monacl_shell") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//services/window_manager:window_manager_apptests", | 86 "//services/window_manager:window_manager_apptests", |
| 87 "//shell:apptests", | 87 "//shell:apptests", |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 | 91 |
| 92 static_library("irt_mojo_nonsfi") { | 92 static_library("irt_mojo_nonsfi") { |
| 93 sources = [ | 93 sources = [ |
| 94 "irt_mojo_nonsfi.cc", | 94 "irt_mojo_nonsfi.cc", |
| 95 "irt_mojo_nonsfi.h", | 95 "irt_mojo_nonsfi.h", |
| 96 "nexe_launcher_nonsfi.cc", |
| 96 ] | 97 ] |
| 97 | 98 |
| 98 deps = [ | 99 deps = [ |
| 100 "//base", |
| 99 "//mojo/public/c/system", | 101 "//mojo/public/c/system", |
| 100 "//mojo/public/platform/nacl:mojo_irt_header", | 102 "//mojo/public/platform/nacl:mojo_irt_header", |
| 101 "//native_client/src/nonsfi/irt:irt_interfaces", | 103 "//native_client/src/nonsfi/irt:irt_interfaces", |
| 102 ] | 104 ] |
| 103 } | 105 } |
| 104 | 106 |
| 105 group("mojo_nacl") { | 107 group("mojo_nacl") { |
| 106 deps = [ | 108 deps = [ |
| 107 "//services/nacl:nacl_content_handler", | 109 "//services/nacl:nacl_content_handler", |
| 108 ] | 110 ] |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 ] | 196 ] |
| 195 } | 197 } |
| 196 | 198 |
| 197 group("mojo_nacl_tests_nonsfi") { | 199 group("mojo_nacl_tests_nonsfi") { |
| 198 testonly = true | 200 testonly = true |
| 199 deps = [ | 201 deps = [ |
| 200 ":monacl_shell_nonsfi_x86", | 202 ":monacl_shell_nonsfi_x86", |
| 201 ":monacl_test_nonsfi_nexes", | 203 ":monacl_test_nonsfi_nexes", |
| 202 ] | 204 ] |
| 203 } | 205 } |
| OLD | NEW |