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

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

Issue 1341873002: Enabling 64-bit mojo shell to launch 32-bit child to handle nonsfi content. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | services/nacl/BUILD.gn » ('j') | services/nacl/BUILD.gn » ('J')
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | services/nacl/BUILD.gn » ('j') | services/nacl/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698