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

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

Issue 16232016: [NaCl SDK] nacl_io: big refactor to return error value (errno). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge master, fix windows Created 7 years, 6 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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
3 'SEARCH': [ 3 'SEARCH': [
4 '.', 4 '.',
5 'pepper' 5 'pepper'
6 ], 6 ],
7 'TARGETS': [ 7 'TARGETS': [
8 { 8 {
9 'NAME' : 'nacl_io', 9 'NAME' : 'nacl_io',
10 'TYPE' : 'lib', 10 'TYPE' : 'lib',
11 'SOURCES' : [ 11 'SOURCES' : [
12 "kernel_handle.cc", 12 "kernel_handle.cc",
13 "kernel_intercept.cc", 13 "kernel_intercept.cc",
14 "kernel_object.cc", 14 "kernel_object.cc",
15 "kernel_proxy.cc", 15 "kernel_proxy.cc",
16 "kernel_wrap_glibc.cc", 16 "kernel_wrap_glibc.cc",
17 "kernel_wrap_newlib.cc", 17 "kernel_wrap_newlib.cc",
18 "kernel_wrap_win.cc", 18 "kernel_wrap_win.cc",
19 "mount.cc", 19 "mount.cc",
20 "mount_dev.cc", 20 "mount_dev.cc",
21 "mount_html5fs.cc", 21 "mount_html5fs.cc",
22 "mount_http.cc", 22 "mount_http.cc",
23 "mount_mem.cc", 23 "mount_mem.cc",
24 "mount_node.cc", 24 "mount_node.cc",
25 "mount_node_dir.cc", 25 "mount_node_dir.cc",
26 "mount_node_html5fs.cc", 26 "mount_node_html5fs.cc",
27 "mount_node_http.cc",
27 "mount_node_mem.cc", 28 "mount_node_mem.cc",
28 "mount_passthrough.cc", 29 "mount_passthrough.cc",
29 "nacl_io.cc", 30 "nacl_io.cc",
30 "path.cc", 31 "path.cc",
31 "pepper_interface.cc", 32 "pepper_interface.cc",
32 "real_pepper_interface.cc", 33 "real_pepper_interface.cc",
33 ], 34 ],
34 } 35 }
35 ], 36 ],
36 'HEADERS': [ 37 'HEADERS': [
37 { 38 {
38 'FILES': [ 39 'FILES': [
40 "error.h",
39 "inode_pool.h", 41 "inode_pool.h",
40 "kernel_handle.h", 42 "kernel_handle.h",
41 "kernel_intercept.h", 43 "kernel_intercept.h",
42 "kernel_object.h", 44 "kernel_object.h",
43 "kernel_proxy.h", 45 "kernel_proxy.h",
44 "kernel_wrap.h", 46 "kernel_wrap.h",
45 "kernel_wrap_real.h", 47 "kernel_wrap_real.h",
46 "mount.h", 48 "mount.h",
47 "mount_dev.h", 49 "mount_dev.h",
48 "mount_html5fs.h", 50 "mount_html5fs.h",
49 "mount_http.h", 51 "mount_http.h",
50 "mount_mem.h", 52 "mount_mem.h",
51 "mount_node_dir.h", 53 "mount_node_dir.h",
52 "mount_node.h", 54 "mount_node.h",
53 "mount_node_html5fs.h", 55 "mount_node_html5fs.h",
56 "mount_node_http.h",
54 "mount_node_mem.h", 57 "mount_node_mem.h",
55 "mount_passthrough.h", 58 "mount_passthrough.h",
56 "nacl_io.h", 59 "nacl_io.h",
57 "osdirent.h", 60 "osdirent.h",
58 "osinttypes.h", 61 "osinttypes.h",
59 "osmman.h", 62 "osmman.h",
60 "osstat.h", 63 "osstat.h",
61 "ostypes.h", 64 "ostypes.h",
62 "path.h", 65 "path.h",
63 "pepper_interface.h", 66 "pepper_interface.h",
64 "real_pepper_interface.h", 67 "real_pepper_interface.h",
65 ], 68 ],
66 'DEST': 'include/nacl_io', 69 'DEST': 'include/nacl_io',
67 }, 70 },
68 { 71 {
69 'FILES': [ 72 'FILES': [
70 "all_interfaces.h", 73 "all_interfaces.h",
71 "define_empty_macros.h", 74 "define_empty_macros.h",
72 "undef_macros.h", 75 "undef_macros.h",
73 ], 76 ],
74 'DEST': 'include/nacl_io/pepper', 77 'DEST': 'include/nacl_io/pepper',
75 } 78 }
76 ], 79 ],
77 'DEST': 'src', 80 'DEST': 'src',
78 'NAME': 'nacl_io', 81 'NAME': 'nacl_io',
79 } 82 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc ('k') | native_client_sdk/src/libraries/nacl_io/mount.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698