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