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

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

Issue 1398213003: Refactored Non-SFI and SFI NaCl into separate directories. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Trusted code
6 if (!is_nacl) {
7 # A simple shell for running untrusted binaries that talk to the Mojo
8 # embedder. (No services.)
9 executable("monacl_shell") {
10 testonly = true
11 sources = [
12 "monacl_shell.cc",
13 ]
14 deps = [
15 "//base:base",
16 "//mojo/edk/system:system",
17 "//mojo/nacl/sfi/nacl_bindings:monacl_sel",
18 ]
19
20 data_deps = [ "//mojo/nacl/sfi/nacl_bindings:irt_mojo(//build/toolchain/nacl :irt_${target_cpu})" ]
21 }
22 }
23
24 group("mojo_nacl") {
25 deps = [
26 "//services/nacl:nacl_content_handler",
27 ]
28 }
29
30 group("mojo_nacl_tests") {
31 testonly = true
32 deps = [
33 "//mojo/nacl:mojo_nacl_tests_untrusted(//build/toolchain/nacl:clang_newlib_$ {current_cpu})",
34 ":monacl_shell",
35 ]
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698