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