| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'input_events', | 5 'NAME' : 'input_events', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['input_events.cc'], | 7 'SOURCES' : ['input_events.cc'], |
| 8 'LIBS': ['ppapi_cpp'] | 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DEST': 'examples', | 11 'DEST': 'examples', |
| 12 'NAME': 'input_events', | 12 'NAME': 'input_events', |
| 13 'TITLE': 'Input Events', | 13 'TITLE': 'Input Events', |
| 14 'DESC': """ | 14 'DESC': """ |
| 15 The Input Events example demonstrates how to handle events triggered by | 15 The Input Events example demonstrates how to handle events triggered by |
| 16 the user. This example allows a user to interact with a square representing a | 16 the user. This example allows a user to interact with a square representing a |
| 17 module instance. Events are displayed on the screen as the user clicks, | 17 module instance. Events are displayed on the screen as the user clicks, |
| 18 scrolls, types, inside or outside of the square.""", | 18 scrolls, types, inside or outside of the square.""", |
| 19 'INFO': 'Keyboard and mouse input, view change, and focus events.' | 19 'INFO': 'Keyboard and mouse input, view change, and focus events.' |
| 20 } | 20 } |
| 21 | 21 |
| OLD | NEW |