Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: mojo/nacl/BUILD.gn

Issue 1374443002: Separate non-SFI NaCl from SFI NaCl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Android not ready (yet) Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 deps = [ 98 deps = [
99 "//mojo/public/c/system", 99 "//mojo/public/c/system",
100 "//mojo/public/platform/nacl:mojo_irt_header", 100 "//mojo/public/platform/nacl:mojo_irt_header",
101 "//native_client/src/nonsfi/irt:irt_interfaces", 101 "//native_client/src/nonsfi/irt:irt_interfaces",
102 ] 102 ]
103 } 103 }
104 104
105 group("mojo_nacl") { 105 group("mojo_nacl") {
106 deps = [ 106 deps = [
107 "//services/nacl:nacl_content_handler", 107 "//services/nacl:nacl_content_handler",
108 ]
109 }
110
111 group("mojo_nacl_nonsfi") {
112 deps = [
108 "//services/nacl:nacl_content_handler_nonsfi", 113 "//services/nacl:nacl_content_handler_nonsfi",
109 ] 114 ]
110 } 115 }
111 116
112 group("mojo_pnacl_tests") { 117 group("mojo_pnacl_tests") {
113 testonly = true 118 testonly = true
114 deps = [ 119 deps = [
115 ":monacl_test(//build/toolchain/nacl:newlib_pnacl)", 120 ":monacl_test(//build/toolchain/nacl:newlib_pnacl)",
116 ] 121 ]
117 } 122 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ":translate_mojo_pnacl_tests_to_native", 178 ":translate_mojo_pnacl_tests_to_native",
174 ":prepend_shebang_to_nexe", 179 ":prepend_shebang_to_nexe",
175 ] 180 ]
176 } 181 }
177 182
178 group("mojo_nacl_tests") { 183 group("mojo_nacl_tests") {
179 testonly = true 184 testonly = true
180 deps = [ 185 deps = [
181 ":mojo_nacl_tests_untrusted(//build/toolchain/nacl:clang_newlib_${current_cp u})", 186 ":mojo_nacl_tests_untrusted(//build/toolchain/nacl:clang_newlib_${current_cp u})",
182 ":monacl_shell", 187 ":monacl_shell",
188 ]
189 }
190
191 group("mojo_nacl_tests_nonsfi") {
192 testonly = true
193 deps = [
183 ":monacl_shell_nonsfi_x86", 194 ":monacl_shell_nonsfi_x86",
184 ":monacl_test_nonsfi_nexes", 195 ":monacl_test_nonsfi_nexes",
185 ] 196 ]
186 } 197 }
OLDNEW
« no previous file with comments | « mojo/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698