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