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', | 10 'NAME' : 'hello_world', |
6 'TYPE' : 'main', | 11 'TYPE' : 'main', |
7 'SOURCES' : ['hello_world.c'], | 12 'SOURCES' : ['hello_world.c'], |
8 'LIBS': ['ppapi', 'pthread'] | 13 'LIBS': ['ppapi', 'pthread'] |
9 } | 14 } |
10 ], | 15 ], |
11 'DATA': ['example.js'], | 16 'DATA': [ |
| 17 'Makefile', |
| 18 'common.mk', |
| 19 'example.js', |
| 20 ], |
12 'DEST': 'examples', | 21 'DEST': 'examples', |
13 'NAME': 'hello_world', | 22 'NAME': 'hello_world', |
14 'TITLE': 'Hello World.', | 23 'TITLE': 'Hello World.', |
15 'DESC': """ | 24 'DESC': """ |
16 The Hello World In C example demonstrates the basic structure of all | 25 The Hello World In C example demonstrates the basic structure of all |
17 Native Client applications. This example loads a Native Client module. The | 26 Native Client applications. This example loads a Native Client module. The |
18 page tracks the status of the module as it load. On a successful load, the | 27 page tracks the status of the module as it load. On a successful load, the |
19 module will post a message containing the string "Hello World" back to | 28 module will post a message containing the string "Hello World" back to |
20 JavaScript which will display it as an alert.""", | 29 JavaScript which will display it as an alert.""", |
21 'FOCUS': 'Basic HTML, JavaScript, and module architecture.', | 30 'FOCUS': 'Basic HTML, JavaScript, and module architecture.', |
22 'GROUP': 'Tools' | 31 'GROUP': 'Tools' |
23 } | 32 } |
24 | |
OLD | NEW |