OLD | NEW |
---|---|
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
3 'TARGETS': [ | 3 'TARGETS': [ |
4 { | 4 { |
5 'NAME' : 'hello_nacl_mounts', | 5 'NAME' : 'hello_nacl_io', |
6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
7 'SOURCES' : [ | 7 'SOURCES' : [ |
8 'handlers.c', | 8 'handlers.c', |
9 'handlers.h', | 9 'handlers.h', |
10 'hello_nacl_mounts.c', | 10 'hello_nacl_io.c', |
11 'hello_nacl_mounts.h', | 11 'hello_nacl_io.h', |
12 'queue.c', | 12 'queue.c', |
13 'queue.h', | 13 'queue.h', |
14 ], | 14 ], |
15 'LIBS': ['ppapi', 'pthread', 'nacl_mounts'] | 15 'LIBS': ['ppapi', 'pthread', 'nacl_io'] |
16 } | 16 } |
17 ], | 17 ], |
18 'DATA': [ | 18 'DATA': [ |
19 'Makefile', | 19 'Makefile', |
20 'example.js' | 20 'example.js' |
21 ], | 21 ], |
22 'DEST': 'examples', | 22 'DEST': 'examples', |
23 'NAME': 'hello_nacl_mounts', | 23 'NAME': 'hello_nacl_io', |
24 'TITLE': 'Hello, Nacl Mounts!', | 24 'TITLE': 'Hello, Nacl Mounts!', |
binji
2013/02/05 21:04:14
Nacl IO
noelallen1
2013/02/05 21:21:47
Done.
| |
25 'DESC': """ | 25 'DESC': """ |
26 The NaCl Mounts example demonstrates mapping standard FILE such as fopen, | 26 The NaCl Mounts example demonstrates mapping standard FILE such as fopen, |
binji
2013/02/05 21:04:14
The NaCl IO
noelallen1
2013/02/05 21:21:47
Done.
| |
27 fread, fwrite into mounts by linking in the nacl_mounts library. This allows | 27 fread, fwrite into mounts by linking in the nacl_io library. This allows |
28 developers to wrap Pepper API such as the File IO API or URL Loader into | 28 developers to wrap Pepper API such as the File IO API or URL Loader into |
29 standard blocking calls.""", | 29 standard blocking calls.""", |
30 'FOCUS': 'Using NaCl Mounts.', | 30 'FOCUS': 'Using NaCl Mounts.', |
binji
2013/02/05 21:04:14
IO
noelallen1
2013/02/05 21:21:47
Done.
| |
31 'GROUP': 'Concepts' | 31 'GROUP': 'Concepts' |
32 } | 32 } |
OLD | NEW |