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

Unified Diff: src/untrusted/nosys/nacl.scons

Issue 22923022: Make libnosys function stubs part of libnacl (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Code review feedback 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/untrusted/nosys/lstat.c ('k') | src/untrusted/nosys/nosys.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/nosys/nacl.scons
diff --git a/src/untrusted/nosys/nacl.scons b/src/untrusted/nosys/nacl.scons
index a9d7a76e2408d67c1baa16ada48c7836454f6f4a..a2c399bceefec0938bacbe76cf3775557d49b8c3 100644
--- a/src/untrusted/nosys/nacl.scons
+++ b/src/untrusted/nosys/nacl.scons
@@ -5,79 +5,8 @@
Import('env')
-sources = ['access.c',
- 'chmod.c',
- 'chown.c',
- 'endpwent.c',
- 'environ.c',
- 'execle.c',
- 'execvp.c',
- 'execl.c',
- 'execv.c',
- 'execlp.c',
- 'execve.c',
- '_execve.c',
- 'fcntl.c',
- 'fchdir.c',
- 'fchmod.c',
- 'fchown.c',
- 'fdatasync.c',
- 'fork.c',
- 'fsync.c',
- 'ftruncate.c',
- 'get_current_dir_name.c',
- 'getegid.c',
- 'geteuid.c',
- 'getgid.c',
- 'getlogin.c',
- 'getrusage.c',
- 'getppid.c',
- 'getpwent.c',
- 'getpwnam.c',
- 'getpwnam_r.c',
- 'getpwuid.c',
- 'getpwuid_r.c',
- 'getuid.c',
- 'getwd.c',
- 'ioctl.c',
- 'isatty.c',
- 'issetugid.c',
- 'kill.c',
- 'lchown.c',
- 'link.c',
- 'llseek.c',
- 'lstat.c',
- 'pclose.c',
- 'pipe.c',
- 'popen.c',
- 'pselect.c',
- 'raise.c',
- 'readlink.c',
- 'remove.c',
- 'rename.c',
- 'select.c',
- 'setegid.c',
- 'seteuid.c',
- 'setgid.c',
- 'setpwent.c',
- 'settimeofday.c',
- 'setuid.c',
- 'signal.c',
- 'sigprocmask.c',
- 'symlink.c',
- 'system.c',
- 'times.c',
- 'tmpfile.c',
- 'truncate.c',
- 'ttyname.c',
- 'ttyname_r.c',
- 'umask.c',
- 'utime.c',
- 'utimes.c',
- 'vfork.c',
- 'wait.c',
- 'waitpid.c',
- ]
+# The libnosys is kept as an empty library for the backwards compatibility
+# and is to be removed eventually once all the clients get updated.
-libnosys = env.ComponentLibrary('libnosys', sources)
+libnosys = env.ComponentLibrary('libnosys', [])
env.AddLibraryToSdk(libnosys)
« no previous file with comments | « src/untrusted/nosys/lstat.c ('k') | src/untrusted/nosys/nosys.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698