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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 } | 53 } |
54 | 54 |
55 group("mojo_nacl_nonsfi") { | 55 group("mojo_nacl_nonsfi") { |
56 deps = [ | 56 deps = [ |
57 "//services/nacl:nacl_content_handler_nonsfi", | 57 "//services/nacl:nacl_content_handler_nonsfi", |
58 ] | 58 ] |
59 } | 59 } |
60 | 60 |
61 group("mojo_pnacl_tests") { | 61 group("mojo_pnacl_tests") { |
62 testonly = true | 62 testonly = true |
63 deps = [ | 63 public_deps = [ |
64 "//mojo/nacl:monacl_test(//build/toolchain/nacl:newlib_pnacl)", | 64 "//mojo/nacl:monacl_test(//build/toolchain/nacl:newlib_pnacl)", |
65 ] | 65 ] |
66 } | 66 } |
67 | 67 |
68 action("translate_mojo_pnacl_tests_to_native") { | 68 action("translate_mojo_pnacl_tests_to_native") { |
69 testonly = true | 69 testonly = true |
70 | 70 |
71 # Leaving default as linux for OSes which are similar to linux, but do | 71 # Leaving default as linux for OSes which are similar to linux, but do |
72 # not self-identify as linux through host_os. | 72 # not self-identify as linux through host_os. |
73 nacl_toolchain_host_os = "linux" | 73 nacl_toolchain_host_os = "linux" |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 ] | 135 ] |
136 } | 136 } |
137 | 137 |
138 group("mojo_nacl_tests_nonsfi") { | 138 group("mojo_nacl_tests_nonsfi") { |
139 testonly = true | 139 testonly = true |
140 deps = [ | 140 deps = [ |
141 ":monacl_shell_nonsfi_x86", | 141 ":monacl_shell_nonsfi_x86", |
142 ":monacl_test_nonsfi_nexes", | 142 ":monacl_test_nonsfi_nexes", |
143 ] | 143 ] |
144 } | 144 } |
OLD | NEW |