| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'win'], |
| 3 'SEARCH': [ | |
| 4 '.', | |
| 5 '..', | |
| 6 '../../tools', | |
| 7 ], | |
| 8 'TARGETS': [ | 3 'TARGETS': [ |
| 9 { | 4 { |
| 10 'NAME' : 'hello_world_stdio', | 5 'NAME' : 'hello_world_stdio', |
| 11 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 12 'SOURCES' : ['hello_world.c'], | 7 'SOURCES' : ['hello_world.c'], |
| 13 'LIBS': ['ppapi_main', 'nacl_mounts', 'ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_main', 'nacl_mounts', 'ppapi_cpp', 'ppapi', 'pthread'] |
| 14 } | 9 } |
| 15 ], | 10 ], |
| 16 'DATA': [ | 11 'DATA': [ |
| 17 'Makefile', | 12 'Makefile', |
| 18 'common.mk', | |
| 19 'example.js', | 13 'example.js', |
| 20 ], | 14 ], |
| 21 'DEST': 'examples', | 15 'DEST': 'examples', |
| 22 'NAME': 'hello_world_stdio', | 16 'NAME': 'hello_world_stdio', |
| 23 'TITLE': 'Hello World STDIO.', | 17 'TITLE': 'Hello World STDIO.', |
| 24 'DESC': """ | 18 'DESC': """ |
| 25 | 19 |
| 26 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 |
| 27 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 |
| 28 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 |
| 29 uses the nacl_mounts library to remap IO to the Pepper API. This | 23 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 | 24 simplifies IO by providing a standard blocking API and allowing STDERR to go to |
| 31 the JavaScript console by default.""", | 25 the JavaScript console by default.""", |
| 32 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', | 26 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', |
| 33 'GROUP': 'Tools' | 27 'GROUP': 'Tools' |
| 34 } | 28 } |
| 35 | 29 |
| OLD | NEW |