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