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

Side by Side Diff: src/untrusted/nosys/nosys.gyp

Issue 22923022: Make libnosys function stubs part of libnacl (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Move all stub source files into stubs folder 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 5
6 { 6 {
7 'includes': [ 7 'includes': [
8 '../../../build/common.gypi', 8 '../../../build/common.gypi',
9 ], 9 ],
10 'variables': { 10 'variables': {
11 'common_sources': [ 11 'common_sources': [
12 '_dummy.c',
Mark Seaborn 2013/08/23 15:45:22 "_dummy.c" needs a comment. Also, put this in 'so
Petr Hosek 2013/08/23 21:35:07 Removed altogether.
12 ], 13 ],
13 }, 14 },
14 'targets' : [ 15 'targets' : [
15 { 16 {
16 'target_name': 'nosys_lib', 17 'target_name': 'nosys_lib',
17 'type': 'none', 18 'type': 'none',
18 'variables': { 19 'variables': {
19 'nlib_target': 'libnosys.a', 20 'nlib_target': 'libnosys.a',
20 'build_glibc': 0, 21 'build_glibc': 0,
21 'build_newlib': 1, 22 'build_newlib': 1,
22 'build_pnacl_newlib': 1, 23 'build_pnacl_newlib': 1,
23 }, 24 },
24 'sources': [ 25 'sources': [],
25 'access.c',
26 'chmod.c',
27 'chown.c',
28 'endpwent.c',
29 'environ.c',
30 'execve.c',
31 '_execve.c',
32 'fcntl.c',
33 'fchdir.c',
34 'fchmod.c',
35 'fchown.c',
36 'fdatasync.c',
37 'fork.c',
38 'fsync.c',
39 'ftruncate.c',
40 'get_current_dir_name.c',
41 'getegid.c',
42 'geteuid.c',
43 'getgid.c',
44 'getlogin.c',
45 'getrusage.c',
46 'getppid.c',
47 'getpwent.c',
48 'getpwnam.c',
49 'getpwnam_r.c',
50 'getpwuid.c',
51 'getpwuid_r.c',
52 'getuid.c',
53 'getwd.c',
54 'ioctl.c',
55 'issetugid.c',
56 'isatty.c',
57 'kill.c',
58 'lchown.c',
59 'link.c',
60 'llseek.c',
61 'lstat.c',
62 'pclose.c',
63 'pipe.c',
64 'popen.c',
65 'pselect.c',
66 'readlink.c',
67 'remove.c',
68 'rename.c',
69 'select.c',
70 'setegid.c',
71 'seteuid.c',
72 'setgid.c',
73 'setpwent.c',
74 'settimeofday.c',
75 'setuid.c',
76 'signal.c',
77 'sigprocmask.c',
78 'symlink.c',
79 'system.c',
80 'times.c',
81 'tmpfile.c',
82 'truncate.c',
83 'ttyname.c',
84 'ttyname_r.c',
85 'umask.c',
86 'utime.c',
87 'utimes.c',
88 'vfork.c',
89 'wait.c',
90 'waitpid.c',
91 ],
92 'dependencies': [ 26 'dependencies': [
93 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 27 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
94 ], 28 ],
95 }, 29 },
96 ], 30 ],
97 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698