Chromium Code Reviews| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 97 deps = [ | 97 deps = [ |
| 98 "//mojo/public/c/system", | 98 "//mojo/public/c/system", |
| 99 "//mojo/public/platform/nacl:mojo_irt_header", | 99 "//mojo/public/platform/nacl:mojo_irt_header", |
| 100 "//native_client/src/nonsfi/irt:irt_interfaces", | 100 "//native_client/src/nonsfi/irt:irt_interfaces", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 group("mojo_nacl") { | 104 group("mojo_nacl") { |
| 105 deps = [ | 105 deps = [ |
| 106 "//services/nacl:nacl_content_handler", | 106 "//services/nacl:nacl_content_handler", |
| 107 "//services/nacl:nacl_content_handler_nonsfi", | 107 "//services/nacl:nacl_content_handler_nonsfi_x86", |
|
Petr Hosek
2015/09/14 19:13:51
What if we're building Mojo on ARM (e.g. Android)?
Sean Klein
2015/09/15 18:37:50
Removed "x86" from suffix.
Currently, ARM is not b
| |
| 108 ] | 108 ] |
| 109 } | 109 } |
| 110 | 110 |
| 111 group("mojo_pnacl_tests") { | 111 group("mojo_pnacl_tests") { |
| 112 testonly = true | 112 testonly = true |
| 113 deps = [ | 113 deps = [ |
| 114 ":monacl_test(//native_client/build/toolchain/nacl:newlib_pnacl)", | 114 ":monacl_test(//native_client/build/toolchain/nacl:newlib_pnacl)", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 | 117 |
| 118 group("mojo_nacl_tests") { | 118 group("mojo_nacl_tests") { |
| 119 testonly = true | 119 testonly = true |
| 120 deps = [ | 120 deps = [ |
| 121 ":mojo_nacl_tests_untrusted(//native_client/build/toolchain/nacl:clang_newli b_${current_cpu})", | 121 ":mojo_nacl_tests_untrusted(//native_client/build/toolchain/nacl:clang_newli b_${current_cpu})", |
| 122 ":monacl_shell", | 122 ":monacl_shell", |
| 123 ":monacl_shell_nonsfi_x86", | 123 ":monacl_shell_nonsfi_x86", |
| 124 ":mojo_pnacl_tests", | 124 ":mojo_pnacl_tests", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |