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