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

Side by Side Diff: third_party/mojo/src/nacl_bindings/BUILD.gn

Issue 1312813003: add nacl_toolchain to //build and flip to using it in the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@build_changes
Patch Set: merge to #346439 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 | « remoting/tools/javascript_key_tester/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 library for launching a NaCl sandbox connected to a Mojo embedder. 7 # A library for launching a NaCl sandbox connected to a Mojo embedder.
8 source_set("monacl_sel") { 8 source_set("monacl_sel") {
9 sources = [ 9 sources = [
10 "mojo_syscall.cc",
10 "mojo_syscall_internal.h", 11 "mojo_syscall_internal.h",
11 "mojo_syscall.cc",
12 "monacl_sel_main.cc", 12 "monacl_sel_main.cc",
13 ] 13 ]
14 deps = [ 14 deps = [
15 "../mojo/public/c/system", 15 "../mojo/public/c/system",
16 16
17 # This target makes sure we have all the pre-processor defines needed to 17 # This target makes sure we have all the pre-processor defines needed to
18 # use NaCl's headers. 18 # use NaCl's headers.
19 "//native_client/build/config/nacl:nacl_base", 19 "//build/config/nacl:nacl_base",
20 "//native_client/src/trusted/desc:nrd_xfer", 20 "//native_client/src/trusted/desc:nrd_xfer",
21 "//native_client/src/trusted/service_runtime:sel_main_chrome", 21 "//native_client/src/trusted/service_runtime:sel_main_chrome",
22 ] 22 ]
23 } 23 }
24 } 24 }
25 25
26 # Untrusted code 26 # Untrusted code
27 if (is_nacl) { 27 if (is_nacl) {
28 executable("irt_mojo") { 28 executable("irt_mojo") {
29 cflags_c = [ "-std=c99" ] 29 cflags_c = [ "-std=c99" ]
30 sources = [ 30 sources = [
31 "../mojo/public/platform/nacl/mojo_irt.h", 31 "../mojo/public/platform/nacl/mojo_irt.h",
32 "irt_entry_mojo.c", 32 "irt_entry_mojo.c",
33 "mojo_irt.c", 33 "mojo_irt.c",
34 ] 34 ]
35 deps = [ 35 deps = [
36 "../mojo/public/c/system", 36 "../mojo/public/c/system",
37 "//native_client/build/config/nacl:nacl_base", 37 "//build/config/nacl:nacl_base",
38 "//native_client/src/untrusted/irt:irt_core_lib", 38 "//native_client/src/untrusted/irt:irt_core_lib",
39 "//native_client/src/untrusted/nacl:imc_syscalls", 39 "//native_client/src/untrusted/nacl:imc_syscalls",
40 ] 40 ]
41 } 41 }
42 } 42 }
OLDNEW
« no previous file with comments | « remoting/tools/javascript_key_tester/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698