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

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

Issue 19271009: [NaCl SDK} Add EventListener and EventEmitter to support epoll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extra mutex Created 7 years, 5 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 "event_emitter.cc",
13 "event_listener.cc",
12 "kernel_handle.cc", 14 "kernel_handle.cc",
13 "kernel_intercept.cc", 15 "kernel_intercept.cc",
14 "kernel_object.cc", 16 "kernel_object.cc",
15 "kernel_proxy.cc", 17 "kernel_proxy.cc",
16 "kernel_wrap_glibc.cc", 18 "kernel_wrap_glibc.cc",
17 "kernel_wrap_newlib.cc", 19 "kernel_wrap_newlib.cc",
18 "kernel_wrap_win.cc", 20 "kernel_wrap_win.cc",
19 "mount.cc", 21 "mount.cc",
20 "mount_dev.cc", 22 "mount_dev.cc",
21 "mount_html5fs.cc", 23 "mount_html5fs.cc",
22 "mount_http.cc", 24 "mount_http.cc",
23 "mount_mem.cc", 25 "mount_mem.cc",
24 "mount_node.cc", 26 "mount_node.cc",
25 "mount_node_dir.cc", 27 "mount_node_dir.cc",
26 "mount_node_html5fs.cc", 28 "mount_node_html5fs.cc",
27 "mount_node_http.cc", 29 "mount_node_http.cc",
28 "mount_node_mem.cc", 30 "mount_node_mem.cc",
29 "mount_passthrough.cc", 31 "mount_passthrough.cc",
30 "nacl_io.cc", 32 "nacl_io.cc",
31 "path.cc", 33 "path.cc",
32 "pepper_interface.cc", 34 "pepper_interface.cc",
33 "real_pepper_interface.cc", 35 "real_pepper_interface.cc",
34 ], 36 ],
35 } 37 }
36 ], 38 ],
37 'HEADERS': [ 39 'HEADERS': [
38 { 40 {
39 'FILES': [ 41 'FILES': [
42 "event_emitter.h",
43 "event_listener.h",
40 "error.h", 44 "error.h",
41 "inode_pool.h", 45 "inode_pool.h",
42 "ioctl.h", 46 "ioctl.h",
43 "kernel_handle.h", 47 "kernel_handle.h",
44 "kernel_intercept.h", 48 "kernel_intercept.h",
45 "kernel_object.h", 49 "kernel_object.h",
46 "kernel_proxy.h", 50 "kernel_proxy.h",
47 "kernel_wrap.h", 51 "kernel_wrap.h",
48 "kernel_wrap_real.h", 52 "kernel_wrap_real.h",
49 "mount.h", 53 "mount.h",
(...skipping 28 matching lines...) Expand all
78 "all_interfaces.h", 82 "all_interfaces.h",
79 "define_empty_macros.h", 83 "define_empty_macros.h",
80 "undef_macros.h", 84 "undef_macros.h",
81 ], 85 ],
82 'DEST': 'include/nacl_io/pepper', 86 'DEST': 'include/nacl_io/pepper',
83 } 87 }
84 ], 88 ],
85 'DEST': 'src', 89 'DEST': 'src',
86 'NAME': 'nacl_io', 90 'NAME': 'nacl_io',
87 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698