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