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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "//services/view_manager:view_manager_service_apptests", | 70 "//services/view_manager:view_manager_service_apptests", |
71 "//services/window_manager:window_manager_apptests", | 71 "//services/window_manager:window_manager_apptests", |
72 "//shell:apptests", | 72 "//shell:apptests", |
73 ] | 73 ] |
74 } | 74 } |
75 } | 75 } |
76 | 76 |
77 group("mojo_nacl") { | 77 group("mojo_nacl") { |
78 deps = [ | 78 deps = [ |
79 "//services/nacl:nacl_content_handler", | 79 "//services/nacl:nacl_content_handler", |
| 80 "//services/nacl:nacl_nonsfi_content_handler", |
80 ] | 81 ] |
81 } | 82 } |
82 | 83 |
83 group("mojo_pnacl_tests") { | 84 group("mojo_pnacl_tests") { |
84 testonly = true | 85 testonly = true |
85 deps = [ | 86 deps = [ |
86 ":monacl_test(//native_client/build/toolchain/nacl:newlib_pnacl)", | 87 ":monacl_test(//native_client/build/toolchain/nacl:newlib_pnacl)", |
87 ] | 88 ] |
88 } | 89 } |
89 | 90 |
90 group("mojo_nacl_tests") { | 91 group("mojo_nacl_tests") { |
91 testonly = true | 92 testonly = true |
92 deps = [ | 93 deps = [ |
93 ":mojo_nacl_tests_untrusted(//native_client/build/toolchain/nacl:clang_newli
b_${current_cpu})", | 94 ":mojo_nacl_tests_untrusted(//native_client/build/toolchain/nacl:clang_newli
b_${current_cpu})", |
94 ":monacl_shell", | 95 ":monacl_shell", |
95 ":mojo_pnacl_tests", | 96 ":mojo_pnacl_tests", |
96 ] | 97 ] |
97 } | 98 } |
OLD | NEW |