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