| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'win'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'hello_world_stdio', | 5 'NAME' : 'hello_world_stdio', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['hello_world.c'], | 7 'SOURCES' : ['hello_world.c'], |
| 8 'LIBS': ['ppapi_main', 'nacl_mounts', 'ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_main', 'nacl_io', 'ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DATA': [ | 11 'DATA': [ |
| 12 'Makefile', | 12 'Makefile', |
| 13 'example.js', | 13 'example.js', |
| 14 ], | 14 ], |
| 15 'DEST': 'examples', | 15 'DEST': 'examples', |
| 16 'NAME': 'hello_world_stdio', | 16 'NAME': 'hello_world_stdio', |
| 17 'TITLE': 'Hello World STDIO.', | 17 'TITLE': 'Hello World STDIO.', |
| 18 'DESC': """ | 18 'DESC': """ |
| 19 | 19 |
| 20 The Hello World Stdio example is the simplest one in the SDK. It uses the | 20 The Hello World Stdio example is the simplest one in the SDK. It uses the |
| 21 ppapi_main library which creates an Module and Instance, using default values | 21 ppapi_main library which creates an Module and Instance, using default values |
| 22 to simplify setup and communication with the PPAPI system. In addition, it | 22 to simplify setup and communication with the PPAPI system. In addition, it |
| 23 uses the nacl_mounts library to remap IO to the Pepper API. This | 23 uses the nacl_io library to remap IO to the Pepper API. This |
| 24 simplifies IO by providing a standard blocking API and allowing STDERR to go to | 24 simplifies IO by providing a standard blocking API and allowing STDERR to go to |
| 25 the JavaScript console by default.""", | 25 the JavaScript console by default.""", |
| 26 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', | 26 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', |
| 27 'GROUP': 'Tools' | 27 'GROUP': 'Tools' |
| 28 } | 28 } |
| 29 | 29 |
| OLD | NEW |