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

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

Issue 22859030: Remove wrapper-link-and-translate from PNaCl and pnacl_shared_newlib from SCons. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: one more reference Created 7 years, 4 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/nacl/tls_using_ldso.c ('k') | src/untrusted/pthread/nacl.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 sources = ['access.c', 8 sources = ['access.c',
9 'chmod.c', 9 'chmod.c',
10 'chown.c', 10 'chown.c',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'ttyname.c', 72 'ttyname.c',
73 'ttyname_r.c', 73 'ttyname_r.c',
74 'umask.c', 74 'umask.c',
75 'utime.c', 75 'utime.c',
76 'utimes.c', 76 'utimes.c',
77 'vfork.c', 77 'vfork.c',
78 'wait.c', 78 'wait.c',
79 'waitpid.c', 79 'waitpid.c',
80 ] 80 ]
81 81
82 libnosys = env.NaClSdkLibrary( 82 libnosys = env.ComponentLibrary('libnosys', sources)
83 'libnosys',
84 sources,
85 # only enable shared versions of this library in the shared newlib case
86 no_shared_lib=not env.Bit('pnacl_shared_newlib'))
87 env.AddLibraryToSdk(libnosys) 83 env.AddLibraryToSdk(libnosys)
OLDNEW
« no previous file with comments | « src/untrusted/nacl/tls_using_ldso.c ('k') | src/untrusted/pthread/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698