| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'load_progress', | 5 'NAME' : 'load_progress', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['load_progress.cc'], | 7 'SOURCES' : ['load_progress.cc'], |
| 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DATA': ['check_browser.js', 'example.js'], | 11 'DATA': [ |
| 12 'Makefile', |
| 13 'example.js', |
| 14 ], |
| 12 'DEST': 'examples', | 15 'DEST': 'examples', |
| 13 'NAME': 'load_progress', | 16 'NAME': 'load_progress', |
| 14 'TITLE': 'Load Progress', | 17 'TITLE': 'Load Progress', |
| 15 'DESC': """ | 18 'DESC': """ |
| 16 The Load Progress example demonstrates how to listen for and handle | 19 The Load Progress example demonstrates how to listen for and handle |
| 17 events that occur while a NaCl module loads. This example listens for | 20 events that occur while a NaCl module loads. This example listens for |
| 18 different load event types and dispatches different events to their | 21 different load event types and dispatches different events to their |
| 19 respective handler. This example also checks for valid browser version and | 22 respective handler. This example also checks for valid browser version and |
| 20 shows how to calculate and display loading progress.""", | 23 shows how to calculate and display loading progress.""", |
| 21 'FOCUS': 'Progress event handling.', | 24 'FOCUS': 'Progress event handling.', |
| 22 'GROUP': 'Concepts' | 25 'GROUP': 'Concepts' |
| 23 } | 26 } |
| 24 | 27 |
| OLD | NEW |