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

Side by Side Diff: src/untrusted/init/nacl.scons

Issue 25147002: nacl_init Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/untrusted/init/kernel_service.cc ('k') | src/untrusted/init/name_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright (c) 2013 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 Import('env')
7
8 # Only for newlib for now, since the subprogram's library dependencies
9 # and ld.so-as-main would complicate the reverse channel emulation
10 # quite a bit. Once we have a better handle on how to merge manifests
11 # and we need to test dynamic loading by the subprocess, we can
12 # revisit this.
13 if env.Bit('nacl_glibc'):
14 Return()
15
16 env.ComponentLibrary('process_lib',
17 [ 'process_lib.cc', ])
18
19 init_nexe = env.ComponentProgram('init',
20 'init.cc',
21 EXTRA_LIBS=['process_lib',
22 'srpc',
23 'platform',
24 'imc',
25 'imc_syscalls',
26 '${PTHREAD_LIBS}',
27 '${NONIRT_LIBS}'])
OLDNEW
« no previous file with comments | « src/untrusted/init/kernel_service.cc ('k') | src/untrusted/init/name_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698