| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'hello_world_interactive', | 5 'NAME' : 'hello_world_interactive', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : [ | 7 'SOURCES' : [ |
| 8 'hello_world.cc', | 8 'hello_world.cc', |
| 9 'helper_functions.cc', | 9 'helper_functions.cc', |
| 10 'helper_functions.h' | 10 'helper_functions.h' |
| 11 ], | 11 ], |
| 12 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 12 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 13 } | 13 } |
| 14 ], | 14 ], |
| 15 'DATA': [ | 15 'DATA': [ |
| 16 'example.js', | 16 'example.js', |
| 17 ], | 17 ], |
| 18 'DEST': 'examples', | 18 'DEST': 'examples', |
| 19 'NAME': 'hello_world_interactive', | 19 'NAME': 'hello_world_interactive', |
| 20 'TITLE': 'Interactive Hello World in C++', | 20 'TITLE': 'Interactive Hello World in C++', |
| 21 'DESC': """ | |
| 22 The Interactive Hello World C++ example demonstrates the basic structure | |
| 23 of all Native Client applications. This example loads a Native Client module | |
| 24 which uses two way interaction with JavaScript whenever a button is clicked. | |
| 25 The NaCl module will respond with the number 42 or the reversed version of the | |
| 26 string in the text box when the appropriate button is clicked.""", | |
| 27 'FOCUS': 'Basic HTML, JavaScript, C++ PPAPI, and Messaging API.', | |
| 28 'GROUP': 'Tools' | 21 'GROUP': 'Tools' |
| 29 } | 22 } |
| 30 | 23 |
| OLD | NEW |