| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 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'] | 12 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 13 } | 13 } |
| 14 ], | 14 ], |
| 15 'DEST': 'examples', | 15 'DEST': 'examples', |
| 16 'NAME': 'hello_world_interactive', | 16 'NAME': 'hello_world_interactive', |
| 17 'TITLE': 'Interactive Hello World in C++', | 17 'TITLE': 'Interactive Hello World in C++', |
| 18 'DESC': """ | 18 'DESC': """ |
| 19 The Interactive Hello World C++ example demonstrates the basic structure | 19 The Interactive Hello World C++ example demonstrates the basic structure |
| 20 of all Native Client applications. This example loads a Native Client module | 20 of all Native Client applications. This example loads a Native Client module |
| 21 which uses two way interaction with JavaScript whenever a button is clicked. | 21 which uses two way interaction with JavaScript whenever a button is clicked. |
| 22 The NaCl module will respond with the number 42 or the reversed version of the | 22 The NaCl module will respond with the number 42 or the reversed version of the |
| 23 string in the text box when the appropriate button is clicked.""", | 23 string in the text box when the appropriate button is clicked.""", |
| 24 'INFO': 'Basic HTML, JavaScript, C++ PPAPI, and Messaging API.', | 24 'INFO': 'Basic HTML, JavaScript, C++ PPAPI, and Messaging API.', |
| 25 } | 25 } |
| 26 | 26 |
| OLD | NEW |