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

Side by Side Diff: native_client_sdk/src/libraries/nacl_mounts/library.dsc

Issue 11066105: [NaCl SDK] nacl_mounts: wrap functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix Created 8 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
OLDNEW
1 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], 2 # Disabled pnacl for now because it warns on using the language extension
3 # typeof(...)
4 #'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
5 'TOOLS': ['newlib', 'glibc', 'win'],
3 'SEARCH': [ 6 'SEARCH': [
4 '.', 7 '.',
5 '../utils' 8 '../utils'
6 ], 9 ],
7 'TARGETS': [ 10 'TARGETS': [
8 { 11 {
9 'NAME' : 'nacl_mounts', 12 'NAME' : 'nacl_mounts',
10 'TYPE' : 'lib', 13 'TYPE' : 'lib',
11 'SOURCES' : [ 14 'SOURCES' : [
12 "kernel_handle.cc", 15 "kernel_handle.cc",
13 "kernel_intercept.cc", 16 "kernel_intercept.cc",
14 "kernel_object.cc", 17 "kernel_object.cc",
15 "kernel_proxy.cc", 18 "kernel_proxy.cc",
19 "kernel_wrap.cc",
16 "mount.cc", 20 "mount.cc",
17 "mount_mem.cc", 21 "mount_mem.cc",
18 "mount_node.cc", 22 "mount_node.cc",
19 "mount_node_dir.cc", 23 "mount_node_dir.cc",
20 "mount_node_mem.cc", 24 "mount_node_mem.cc",
21 "path.cc", 25 "path.cc",
22 ], 26 ],
23 } 27 }
24 ], 28 ],
25 'HEADERS': [ 29 'HEADERS': [
26 { 30 {
27 'FILES': [ 31 'FILES': [
28 "kernel_handle.h", 32 "kernel_handle.h",
29 "kernel_intercept.h", 33 "kernel_intercept.h",
30 "kernel_object.h", 34 "kernel_object.h",
31 "kernel_proxy.h", 35 "kernel_proxy.h",
36 "kernel_wrap.h",
32 "mount.h", 37 "mount.h",
33 "mount_mem.h", 38 "mount_mem.h",
39 "mount_node.h",
34 "mount_node_dir.h", 40 "mount_node_dir.h",
35 "mount_node.h",
36 "mount_node_mem.h", 41 "mount_node_mem.h",
37 "osdirent.h", 42 "osdirent.h",
38 "osstat.h", 43 "osstat.h",
39 "ostypes.h", 44 "ostypes.h",
40 "path.h" 45 "path.h"
41 ], 46 ],
42 'DEST': 'include/nacl_mounts', 47 'DEST': 'include/nacl_mounts',
43 }, 48 },
44 { 49 {
45 'FILES': [ 50 'FILES': [
46 "auto_lock.h", 51 "auto_lock.h",
47 "macros.h", 52 "macros.h",
48 "ref_object.h" 53 "ref_object.h"
49 ], 54 ],
50 'DEST': 'include/utils', 55 'DEST': 'include/utils',
51 } 56 }
52 ], 57 ],
58 'DATA': [
59 "kernel_wrap_glibc.cc",
60 "kernel_wrap_newlib.cc",
61 "kernel_wrap_win.cc",
62 ],
53 'DEST': 'src', 63 'DEST': 'src',
54 'NAME': 'nacl_mounts', 64 'NAME': 'nacl_mounts',
55 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698