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

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

Issue 24908002: Provide IRT process interface 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/nacl/kill.c ('k') | src/untrusted/nacl/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 # 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 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'sources_for_standard_interfaces': [ 10 'sources_for_standard_interfaces': [
11 'access.c', 11 'access.c',
12 'chdir.c', 12 'chdir.c',
13 'chmod.c', 13 'chmod.c',
14 'clock.c', 14 'clock.c',
15 'clock_getres.c', 15 'clock_getres.c',
16 'clock_gettime.c', 16 'clock_gettime.c',
17 'close.c', 17 'close.c',
18 'dup.c', 18 'dup.c',
19 '_exit.c', 19 '_exit.c',
20 'fchdir.c', 20 'fchdir.c',
21 'fchmod.c', 21 'fchmod.c',
22 'fdatasync.c', 22 'fdatasync.c',
23 'fstat.c', 23 'fstat.c',
24 'fsync.c', 24 'fsync.c',
25 'ftruncate.c', 25 'ftruncate.c',
26 'getcwd.c', 26 'getcwd.c',
27 'getdents.c', 27 'getdents.c',
28 'getpagesize.c', 28 'getpagesize.c',
29 'getpgid.c',
29 'getpid.c', 30 'getpid.c',
31 'getppid.c',
32 'getsid.c',
30 'gettimeofday.c', 33 'gettimeofday.c',
34 'kill.c',
31 'link.c', 35 'link.c',
32 'lock.c', 36 'lock.c',
33 'lseek.c', 37 'lseek.c',
34 'lstat.c', 38 'lstat.c',
35 'malloc.c', 39 'malloc.c',
36 'mkdir.c', 40 'mkdir.c',
37 'mmap.c', 41 'mmap.c',
38 'mprotect.c', 42 'mprotect.c',
39 'munmap.c', 43 'munmap.c',
40 'nanosleep.c', 44 'nanosleep.c',
41 'nacl_interface_query.c', 45 'nacl_interface_query.c',
42 'nacl_irt_fdio.c', 46 'nacl_irt_fdio.c',
43 'nacl_irt_filename.c', 47 'nacl_irt_filename.c',
44 'nacl_read_tp.c', 48 'nacl_read_tp.c',
45 'nacl_add_tp.c', 49 'nacl_add_tp.c',
46 'open.c', 50 'open.c',
51 'pipe.c',
52 'posix_spawn.c',
47 'read.c', 53 'read.c',
48 'readlink.c', 54 'readlink.c',
49 'rename.c', 55 'rename.c',
50 'rmdir.c', 56 'rmdir.c',
51 'pthread_initialize_minimal.c', 57 'pthread_initialize_minimal.c',
52 'pthread_stubs.c', 58 'pthread_stubs.c',
53 'sbrk.c', 59 'sbrk.c',
54 'sched_yield.c', 60 'sched_yield.c',
61 'setpgid.c',
62 'setsid.c',
63 'signal.c',
64 'sigprocmask.c',
55 'stacktrace.c', 65 'stacktrace.c',
56 'start.c', 66 'start.c',
57 'stat.c', 67 'stat.c',
58 'symlink.c', 68 'symlink.c',
59 'sysconf.c', 69 'sysconf.c',
60 'tls.c', 70 'tls.c',
61 'truncate.c', 71 'truncate.c',
62 'unlink.c', 72 'unlink.c',
63 'utimes.c', 73 'utimes.c',
74 'wait.c',
75 'waitpid.c',
64 'write.c', 76 'write.c',
65 ], 77 ],
66 'sources_for_stubs': [ 78 'sources_for_stubs': [
67 'stubs/chown.c', 79 'stubs/chown.c',
68 'stubs/endpwent.c', 80 'stubs/endpwent.c',
69 'stubs/environ.c', 81 'stubs/environ.c',
70 'stubs/_execve.c', 82 'stubs/_execve.c',
71 'stubs/fchown.c', 83 'stubs/fchown.c',
72 'stubs/fcntl.c', 84 'stubs/fcntl.c',
73 'stubs/fork.c', 85 'stubs/fork.c',
74 'stubs/get_current_dir_name.c', 86 'stubs/get_current_dir_name.c',
75 'stubs/getegid.c', 87 'stubs/getegid.c',
76 'stubs/geteuid.c', 88 'stubs/geteuid.c',
77 'stubs/getgid.c', 89 'stubs/getgid.c',
78 'stubs/getlogin.c', 90 'stubs/getlogin.c',
79 'stubs/getrusage.c', 91 'stubs/getrusage.c',
80 'stubs/getppid.c',
81 'stubs/getpwent.c', 92 'stubs/getpwent.c',
82 'stubs/getpwnam.c', 93 'stubs/getpwnam.c',
83 'stubs/getpwnam_r.c', 94 'stubs/getpwnam_r.c',
84 'stubs/getpwuid.c', 95 'stubs/getpwuid.c',
85 'stubs/getpwuid_r.c', 96 'stubs/getpwuid_r.c',
86 'stubs/getuid.c', 97 'stubs/getuid.c',
87 'stubs/getwd.c', 98 'stubs/getwd.c',
88 'stubs/ioctl.c', 99 'stubs/ioctl.c',
89 'stubs/issetugid.c', 100 'stubs/issetugid.c',
90 'stubs/kill.c',
91 'stubs/lchown.c', 101 'stubs/lchown.c',
92 'stubs/llseek.c', 102 'stubs/llseek.c',
93 'stubs/pipe.c',
94 'stubs/pselect.c', 103 'stubs/pselect.c',
95 'stubs/select.c', 104 'stubs/select.c',
96 'stubs/setegid.c', 105 'stubs/setegid.c',
97 'stubs/seteuid.c', 106 'stubs/seteuid.c',
98 'stubs/setgid.c', 107 'stubs/setgid.c',
99 'stubs/setpwent.c', 108 'stubs/setpwent.c',
100 'stubs/settimeofday.c', 109 'stubs/settimeofday.c',
101 'stubs/setuid.c', 110 'stubs/setuid.c',
102 'stubs/signal.c',
103 'stubs/sigprocmask.c',
104 'stubs/times.c', 111 'stubs/times.c',
105 'stubs/ttyname.c', 112 'stubs/ttyname.c',
106 'stubs/ttyname_r.c', 113 'stubs/ttyname_r.c',
107 'stubs/umask.c', 114 'stubs/umask.c',
108 'stubs/utime.c', 115 'stubs/utime.c',
109 'stubs/vfork.c', 116 'stubs/vfork.c',
110 'stubs/wait.c',
111 'stubs/waitpid.c',
112 ], 117 ],
113 'sources_for_nacl_extensions': [ 118 'sources_for_nacl_extensions': [
114 'gc_hooks.c', 119 'gc_hooks.c',
115 'nacl_irt.c', 120 'nacl_irt.c',
116 'nacl_irt_init.c', 121 'nacl_irt_init.c',
117 'nacl_tls_get.c', 122 'nacl_tls_get.c',
118 'nacl_tls_init.c', 123 'nacl_tls_init.c',
119 ], 124 ],
120 'imc_syscalls': [ 125 'imc_syscalls': [
121 'imc_accept.c', 126 'imc_accept.c',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'build_newlib': 1, 288 'build_newlib': 1,
284 'build_irt': 1, 289 'build_irt': 1,
285 }, 290 },
286 'sources': ['<@(imc_syscalls)'], 291 'sources': ['<@(imc_syscalls)'],
287 'dependencies': [ 292 'dependencies': [
288 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 293 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
289 ], 294 ],
290 }, 295 },
291 ], 296 ],
292 } 297 }
OLDNEW
« no previous file with comments | « src/untrusted/nacl/kill.c ('k') | src/untrusted/nacl/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698