| 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' : 'mouselock', | 5 'NAME' : 'mouselock', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['mouselock.cc', 'mouselock.h'], | 7 'SOURCES' : ['mouselock.cc', 'mouselock.h'], |
| 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DATA': ['check_browser.js'], | 11 'DATA': [ |
| 12 'Makefile', |
| 13 ], |
| 12 'DEST': 'examples', | 14 'DEST': 'examples', |
| 13 'NAME': 'mouselock', | 15 'NAME': 'mouselock', |
| 14 'TITLE': 'Mouse Lock', | 16 'TITLE': 'Mouse Lock', |
| 15 'DESC': """ | 17 'DESC': """ |
| 16 The Mouselock example demonstrates how to use the MouseLock API to hide | 18 The Mouselock example demonstrates how to use the MouseLock API to hide |
| 17 the mouse cursor. Mouse lock is only available in full-screen mode. You can | 19 the mouse cursor. Mouse lock is only available in full-screen mode. You can |
| 18 lock and unlock the mouse while in full-screen mode by pressing the Enter key. | 20 lock and unlock the mouse while in full-screen mode by pressing the Enter key. |
| 19 """, | 21 """, |
| 20 'FOCUS': 'Mouse lock, Full-screen.', | 22 'FOCUS': 'Mouse lock, Full-screen.', |
| 21 'GROUP': 'Concepts' | 23 'GROUP': 'Concepts' |
| 22 } | 24 } |
| 23 | 25 |
| OLD | NEW |